blob: 4463ca95303b1c2f48414cf6aa8f8c48ab4f6b5a [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.
typedef T0 = Function?;
typedef T1<X> = List<X?>?;
typedef T2<X, Y> = Map<X?, Y?>?;
typedef T3 = Never? Function(void)?;
typedef T4<X> = X? Function(X?, {required X? name})?;
typedef T5<X extends String, Y extends List<X?>> = X? Function(Y?,
[Map<Y, Y?>]);
void main() {
// ignore:unused_local_variable
var ensure_usage = [T0, T1, T2, T3, T4, T5];
}