Index: tests/language/static_final_field2_test.dart |
diff --git a/tests/language/static_final_field2_test.dart b/tests/language/static_final_field2_test.dart |
index 2c550a33f3da2ecd3383df90abaed4b20c3b1e33..82e281e7957f0cf3069d617f070b2fc902469eb4 100644 |
--- a/tests/language/static_final_field2_test.dart |
+++ b/tests/language/static_final_field2_test.dart |
@@ -10,13 +10,13 @@ class A { |
class B { |
const B() : n = 5; |
final n; |
- static const a; /// 02: compile-time error |
+ static const a; // /// 02: compile-time error |
static const b = 3 + 5; |
} |
main() { |
- A.x = 2; /// 01: static type warning, runtime error |
+ A.x = 2; // /// 01: static type warning, runtime error |
new B(); |
print(B.b); |
- print(B.a); /// 02: continued |
+ print(B.a); // /// 02: continued |
} |