blob: 5f613f7b03df9e00c2ccc48544d1c3a48d0f65ea [file] [log] [blame]
// Copyright (c) 2012, 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.
// @dart = 2.9
// A type variable can't be referenced in a static class
class A<T> {
static int method() {
// error, can't reference a type variable in a static context
var foo =
new T(); /*@compile-error=unspecified*/
}
}
main() {
A.method();
}