blob: d0383614840234ed5a47ec2263fdd5f3b4c50f31 [file] [log] [blame]
// Copyright (c) 2018, 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.
class Foo {
Foo<A>() {} // //# 00: compile-time error
}
main() {
new Foo();
}