blob: 37b3a75294f575b5d7dee42261e5b0e09a2686f1 [file] [log] [blame]
// Copyright (c) 2018, 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.
// @dart = 2.7
/*spec:nnbd-off.class: Class:explicit=[Class<int>],needsArgs*/
/*spec:nnbd-sdk.class: Class:explicit=[Class<int*>*],needsArgs*/
class Class<T> {}
main() async {
// Despite the `is dynamic Function(Object,StackTrace)` test in the async
// implementation the closure, with type
// `dynamic Function(dynamic, Class<int>)`, is not a potential subtype and
// therefore doesn't need its signature.
/*spec:nnbd-off|spec:nnbd-sdk.needsSignature*/
local(object, Class<int> stacktrace) => null;
return local;
}