Index: tests/language/reify_typevar_static_test.dart |
diff --git a/tests/language/reify_typevar_static_test.dart b/tests/language/reify_typevar_static_test.dart |
index ed510f0ee010b3fa313236e6d85f28e36df3beb7..fb9bf9acb3a1dc8c750cfd18cef18784e5377d1e 100644 |
--- a/tests/language/reify_typevar_static_test.dart |
+++ b/tests/language/reify_typevar_static_test.dart |
@@ -9,16 +9,16 @@ class C<T> { |
C([this.x]); |
static staticFunction(bool b) => |
- b ? T : /// 00: compile-time error |
+ b ? T : // /// 00: compile-time error |
null; |
factory C.factoryConstructor(bool b) => new C( |
- b ? T : /// 01: ok |
+ b ? T : // /// 01: ok |
null); |
C.redirectingConstructor(bool b) : this( |
- b ? T : /// 02: ok |
+ b ? T : // /// 02: ok |
null); |
C.ordinaryConstructor(bool b) : x = |
- b ? T : /// 03: ok |
+ b ? T : // /// 03: ok |
null; |
} |