blob: 6bd17d3606d58aaddd006c926a9e707775a6c78d [file] [log] [blame]
// Copyright (c) 2016, 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 "package:expect/expect.dart";
/*class: T:checks=[],indirectInstance*/
class T<X> {
final Type tType = X;
Type get getTType => X;
}
/*class: S:checks=[]*/
class S<Y> {
final Type sType = Y;
Type get getSType => Y;
}
/*class: TS:checks=[],instance*/
class TS<A, B> = T<A> with S<B>;
@pragma('dart2js:noInline')
@pragma('dart2js:assumeDynamic')
dyn(x) => x;
main() {
var ts = new TS<int, String>();
Expect.equals("String", ts.sType.toString());
Expect.equals("int", ts.tType.toString());
Expect.equals("String", ts.getSType.toString());
Expect.equals("int", ts.getTType.toString());
Expect.equals("String", dyn(ts).sType.toString());
Expect.equals("int", dyn(ts).tType.toString());
Expect.equals("String", dyn(ts).getSType.toString());
Expect.equals("int", dyn(ts).getTType.toString());
}