blob: f8414aa6f35395e048ca9c908e6f719e5e98795e [file] [log] [blame]
// Copyright (c) 2019, 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.
/**
* @assertion A type parameter cannot be used to name a constructor in an
* instance creation expression
* @description Checks that class type parameter cannot be used in an instance
* creation expression.
* @compile-error
* @author iarkh@unipro.ru
*/
class A<T> {
test() {
T();
}
}
main() {
}