blob: 1d19eefa3faec5e5c232d60fffea6096ae1b5701 [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";
class I<X> {}
class C0<T> extends I<T> {}
class C1<T> implements I<T> {}
mixin M0<T> on I<T> {
}
mixin M1<T> on I<T> {
T Function(T) get value => null;
}
mixin M2<T> implements I<T> {}
mixin M3<T> on I<T> {}
class J<X> {}
class C2 extends C1<int> implements J<double> {}
class C3 extends J<double> {}
mixin M4<S, T> on I<S>, J<T> {
S Function(S) get value0 => null;
T Function(T) get value1 => null;
}
mixin _M5<T> on I<T> implements J<T> {}
// Inference here puts J<int> in the superclass hierarchy
class _A23 extends C0<int> with _M5 {}
// Inference here should get J<int> for M4.T
// if inference for _M5 is done first (correctly)
// and otherwise J<dynamic>
class A23 extends _A23 with M4 {
void check() {
// Verify that M4.S is exactly int
int Function(int) f0 = this.value0;
// Verify that M4.T is exactly int
int Function(int) f1 = this.value1;
}
}
void main() {
Expect.type<M4<int, int>>(new A23()..check());
}