f41a4ffac6
Review URL: https://chromiumcodereview.appspot.com//10837359 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@11165 260f80e4-7a28-3924-810f-c04153c831b5
12 lines
193 B
Dart
12 lines
193 B
Dart
class Foo {
|
|
const Bar<Foo> bar = const Bar/* comment here use to trigger bug 323 */();
|
|
}
|
|
|
|
class Bar<T extends Foo> {
|
|
const Bar();
|
|
}
|
|
|
|
main() {
|
|
Expect.equals(new Foo().bar, const Bar());
|
|
}
|