blob: ecb747e579893283c3fa43fc594cf2d896593162 [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 generic type is a type which is introduced by a generic class
/// declaration or a generic type alias, or it is the type [FutureOr].
/// @description Checks that it is a compile error when try to use non-generic
/// type with typed parameter
/// @author iarkh@unipro.ru
class A {}
void testme() {}
typedef AAlias = A;
typedef int TestFunction();
typedef Func1 = void Function(int);
main() {
A<int>();
//^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
testme<int>();
// ^^^^^
// [analyzer] unspecified
// [cfe] unspecified
AAlias<int>();
//^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
TestFunction<int> tf = () => 42;
//^^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
Func1<int> f1 = (int i) {};
//^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}