From 74990b58eaa25a7f8a5dba18be4e59f0aad657d7 Mon Sep 17 00:00:00 2001 From: charleschang Date: Sun, 26 Nov 2017 10:45:29 +0800 Subject: [PATCH] remove redeclaration of variable --- docs/reviews.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reviews.md b/docs/reviews.md index 3d6bbc1..12cc660 100644 --- a/docs/reviews.md +++ b/docs/reviews.md @@ -136,8 +136,8 @@ Note that the code is terse by design, and is never meant to be a positive examp B b = new B(); A a = b; C c = b; - A a = (A)b; - C c = (C)b; + a = (A)b; + c = (C)b; ``` 9. Can, or not? If can, print what?