blob: 40de910389756d7126228e4d29fa948c43d1f8bd [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.
/*kernel.class: Class:*/
/*strong.class: Class:explicit=[Class<int>],needsArgs*/
/*omit.class: Class:*/
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.
/*kernel.*/
/*strong.needsSignature*/
/*omit.*/
local(object, Class<int> stacktrace) => null;
return local;
}