blob: e0cd2bc2902a17abedc9a8193781b8a2546bc31b [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.
// 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();
}