blob: 591fe4708f89a50f14b230793e383bad3cc83218 [file] [log] [blame]
// Copyright (c) 2020, 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
import 'lib.dart' as lib;
/*member: callFooMethod:OutputUnit(3, {libB})*/
int callFooMethod() => lib.callFooMethod();
/*member: isFoo:OutputUnit(3, {libB})*/
bool isFoo(o) => lib.isFoo(o);
/*member: isFunFunFoo:OutputUnit(3, {libB})*/
bool isFunFunFoo(o) => lib.isFunFunFoo(o);
/*member: isDooFunFunFoo:OutputUnit(3, {libB})*/
bool isDooFunFunFoo(o) => o is lib.Doo<lib.FunFunFoo>;