| Index: tests/language_strong/type_variable_conflict_test.dart
|
| diff --git a/tests/language_strong/type_variable_conflict_test.dart b/tests/language_strong/type_variable_conflict_test.dart
|
| index d0e2925798347bb172cd60ae26063e2296377a87..3af8dfbe233036780cf23ed6f3c29a76b4bce7a3 100644
|
| --- a/tests/language_strong/type_variable_conflict_test.dart
|
| +++ b/tests/language_strong/type_variable_conflict_test.dart
|
| @@ -8,22 +8,22 @@
|
| import "package:expect/expect.dart";
|
|
|
| class G1<T> {
|
| - var T; /// 01: compile-time error
|
| + var T; //# 01: compile-time error
|
| }
|
| class G2<T> {
|
| - get T {} /// 02: compile-time error
|
| + get T {} //# 02: compile-time error
|
| }
|
| class G3<T> {
|
| - T() {} /// 03: compile-time error
|
| + T() {} //# 03: compile-time error
|
| }
|
| class G4<T> {
|
| - static var T; /// 04: compile-time error
|
| + static var T; //# 04: compile-time error
|
| }
|
| class G5<T> {
|
| - static get T {} /// 05: compile-time error
|
| + static get T {} //# 05: compile-time error
|
| }
|
| class G6<T> {
|
| - static T() {} /// 06: compile-time error
|
| + static T() {} //# 06: compile-time error
|
| }
|
|
|
| main() {
|
|
|