Index: tests/language_strong/const_nested_test.dart |
diff --git a/tests/language_strong/const_nested_test.dart b/tests/language_strong/const_nested_test.dart |
index d78e626a763cea98d20ab9230ba1e96f5018acd3..bf52d67b97c1940e1160a3c911af1fc521f9914d 100644 |
--- a/tests/language_strong/const_nested_test.dart |
+++ b/tests/language_strong/const_nested_test.dart |
@@ -16,7 +16,7 @@ class ConstFoo { |
getClosure() { |
const MIN = 2 - 1; |
const MAX = N * 2; |
- const MASK = (1 << (MAX - MIN + 1)) - 1; // 65535. |
+ const MASK = (1 << (MAX - MIN + 1)) - 1; // 65535. |
void foo() { |
Expect.equals(1, MIN); |
@@ -36,11 +36,7 @@ getClosure() { |
return foo; |
} |
- |
main() { |
var f = getClosure(); |
f(); |
} |
- |
- |
- |