Index: tests/language_strong/getter_no_setter2_test.dart |
diff --git a/tests/language_strong/getter_no_setter2_test.dart b/tests/language_strong/getter_no_setter2_test.dart |
index 62444b734b491756f9039508a28dc600f2eb5643..bd67aff777e11ddeb8f97d826cefb4d881f50e90 100644 |
--- a/tests/language_strong/getter_no_setter2_test.dart |
+++ b/tests/language_strong/getter_no_setter2_test.dart |
@@ -12,25 +12,25 @@ class Example { |
{ |
bool flag_exception = false; |
try { |
- nextVar++; /// 03: static type warning |
+ nextVar++; //# 03: static type warning |
} catch (excpt) { |
flag_exception = true; |
} |
- Expect.isTrue(flag_exception); /// 03: continued |
+ Expect.isTrue(flag_exception); //# 03: continued |
} |
{ |
bool flag_exception = false; |
try { |
- this.nextVar++; /// 00: static type warning |
+ this.nextVar++; //# 00: static type warning |
} catch (excpt) { |
flag_exception = true; |
} |
- Expect.isTrue(flag_exception); /// 00: continued |
+ Expect.isTrue(flag_exception); //# 00: continued |
} |
} |
static test() { |
- nextVar++; /// 01: runtime error |
- this.nextVar++; /// 02: compile-time error |
+ nextVar++; //# 01: runtime error |
+ this.nextVar++; //# 02: compile-time error |
} |
} |