blob: 9251d619349dd7b591752b67ce801b25973e019c [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.
// SharedOptions=--enable-experiment=nonfunction-type-aliases
import 'dart:async';
// Introduce an aliased type.
typedef T<X> = Function;
// Use the aliased type.
abstract class C {
final T<Null> v7;
C(): v7 = T();
// ^
// [analyzer] unspecified
// [cfe] unspecified
}
X foo<X>(X x) => x;
main() {
var v9 = <Set<T<T>>, Set<T<T>>>{{}: {}};
v9[{}] = {T<T>()};
// ^
// [analyzer] unspecified
// [cfe] unspecified
T<Null>();
//^
// [analyzer] unspecified
// [cfe] unspecified
T<Null>.named();
//^
// [analyzer] unspecified
// [cfe] unspecified
T<Object> v12 = foo<T<bool>>(T<bool>());
// ^
// [analyzer] unspecified
// [cfe] unspecified
T<List<List<List<List>>>>.staticMethod<T<int>>();
// ^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}