blob: 500f4213eb92e6a34e75e446ea09c7d8d522a33f [file] [log] [blame]
// @dart = 2.9
import "./issue46518_lib.dart";
const optedOutToken = OT<NullableIntF>();
class CheckIdentical {
const CheckIdentical(x, y) : assert(identical(x, y));
}
testOptedOut() {}
const testCrossLibraries = const CheckIdentical(optedInToken, optedOutToken);
main() {}