blob: cb5b8c4d6c1df03bb23e9421c481d5b745f7a147 [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.
import 'package:expect/expect.dart';
import 'package:meta/dart2js.dart';
/*kernel.class: A:needsArgs*/
/*strong.class: A:direct,explicit=[A.T],needsArgs*/
/*omit.class: A:*/
class A<T> {
/*kernel.element: A.call:needsSignature*/
/*strong.element: A.call:*/
/*omit.element: A.call:*/
call(T t) {}
}
@noInline
test(o) => o is Function(int);
main() {
Expect.isFalse(test(new A<int>()));
Expect.isFalse(test(new A<String>()));
}