blob: 45ab17f81eb92290bbb821219b689b0fd3d06246 [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:meta/dart2js.dart';
/*class: A:checks=[]*/
class A<T> {
@noInline
foo(x) {
return x is T;
}
}
/*class: BB:checks=[]*/
class BB {}
/*class: B:checks=[$isBB]*/
class B<T> implements BB {
@noInline
foo() {
return new A<T>().foo(new B());
}
}
main() {
new B<BB>().foo();
}