blob: 7015e0f8810f3b80cc60d812af0f2ccd921763f2 [file] [log] [blame]
// Copyright (c) 2023, 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.19
import "package:expect/expect.dart";
class R<E, F> {}
class M<J> implements R<bool, J> {}
class B1 {}
class B2 {}
class A1<T> extends B1 with M<T> {}
class A2<T> = B2 with M<T>;
main() {
var a1 = new A1<int>();
Expect.isTrue(a1 is R<bool, int>);
var a2 = new A2<int>();
Expect.isTrue(a2 is R<bool, int>);
}