dart-sdk/tests/language/type_variable/conflict_runtime_test.dart
Robert Nystrom 7e756d6f86 Migrate language_2/type_variable to NNBD.
Change-Id: Iee96b1e254f17ee0b1b7b309cc807bf874a1491e
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/151982
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Commit-Queue: Nicholas Shahan <nshahan@google.com>
Reviewed-by: Nicholas Shahan <nshahan@google.com>
2020-06-22 21:20:26 +00:00

55 lines
791 B
Dart

// TODO(multitest): This was automatically migrated from a multitest and may
// contain strange or dead code.
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// Test that we report a compile-time error when a type parameter conflicts
// with an instance or static member with the same name.
import "package:expect/expect.dart";
class G1<T> {
}
class G2<T> {
}
class G3<T> {
}
class G4<T> {
}
class G5<T> {
}
class G6<T> {
}
class G7<T> {
}
class G8<T> {
}
main() {
new G1<int>();
new G2<int>();
new G3<int>();
new G4<int>();
new G5<int>();
new G6<int>();
new G7<int>();
new G8<int>();
}