Index: tests/language_strong/malformed2_test.dart |
diff --git a/tests/language_strong/malformed2_test.dart b/tests/language_strong/malformed2_test.dart |
index 84011c49712e7c02c3b1b72ee0af492933ccf1da..1b263fa13c14991b017817943b123be7aa7f454a 100644 |
--- a/tests/language_strong/malformed2_test.dart |
+++ b/tests/language_strong/malformed2_test.dart |
@@ -5,7 +5,7 @@ |
library malformed_test; |
// This part includes the actual tests. |
-part 'malformed2_lib.dart'; /// 00: static type warning |
+part 'malformed2_lib.dart'; //# 00: static type warning |
bool inCheckedMode() { |
try { |
@@ -49,11 +49,11 @@ test(bool expectTypeError, f(), [String message]) { |
} |
} |
-const Unresolved c1 = 0; /// 01: static type warning, checked mode compile-time error |
+const Unresolved c1 = 0; //# 01: static type warning, checked mode compile-time error |
void main() { |
- print(c1); /// 01: continued |
- testValue(new List<String>()); /// 00: continued |
- testValue(null); /// 00: continued |
+ print(c1); //# 01: continued |
+ testValue(new List<String>()); //# 00: continued |
+ testValue(null); //# 00: continued |
checkFailures(); |
} |