Index: tests/language/cyclic_typedef_test.dart |
diff --git a/tests/language/cyclic_typedef_test.dart b/tests/language/cyclic_typedef_test.dart |
index 1f42e613fa3885263cd7d5d75c432c148a687130..6b967074ca8a7b3b5cd0b27c71c7d2f9a36f4172 100644 |
--- a/tests/language/cyclic_typedef_test.dart |
+++ b/tests/language/cyclic_typedef_test.dart |
@@ -11,7 +11,7 @@ typedef |
// Cyclic through return type. |
A //# 01: compile-time error |
-A // The name of the typedef |
+ A // The name of the typedef |
// Cyclic through type variable bound. |
<T extends A> //# 10: compile-time error |
@@ -19,7 +19,7 @@ A // The name of the typedef |
// Cyclic through generic type variable bound. |
<T extends List<A>> //# 11: compile-time error |
-( // The left parenthesis of the typedef arguments. |
+ (// The left parenthesis of the typedef arguments. |
// Cyclic through parameter type. |
A a //# 02: compile-time error |
@@ -51,7 +51,7 @@ Class c //# 12: ok |
// Reference through a class type bound is not a cyclic self-reference. |
Class c //# 13: ok |
-); // The right parenthesis of the typedef arguments. |
+ ); // The right parenthesis of the typedef arguments. |
typedef B(A a); |
typedef C(B b); |
@@ -66,4 +66,4 @@ void testA(A a) {} |
void main() { |
testA(null); |
-} |
+} |