blob: ab4f1f6496027aadd023f3131a76bac303c27bb7 [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 as a generic type
/// @description Checks that nonfunction type alias parameter cannot be used as a
/// generic type
/// @author iarkh@unipro.ru
// SharedOptions=--enable-experiment=nonfunction-type-aliases
class A<T> {}
class B<T1, T2> {}
typedef Alias<T1 extends A, T2 extends T1<int>> = B<T1, T2>;
// ^
// [analyzer] unspecified
// [cfe] unspecified
main() {
}