blob: 4f683bd999fd28f98c2171d6e0e2694c24447b02 [file] [log] [blame]
// Copyright (c) 2011, 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.
/// @assertion Next, q is executed with this bound to i, the type parameters
/// (if any) of R bound to the actual type arguments V1, ..., Vm and the formal
/// parameter bindings that resulted from the evaluation of the argument list.
/// The result of the evaluation of e is i.
/// @description Checks that type arguments are bound correctly when evaluating
/// the initializer list.
/// @author msyabro
import '../../../../Utils/expect.dart';
class D {}
var p1;
var p2;
var p3;
class A<T, U, V> {
T x;
U y;
V z;
A(): x = p1, y = p2, z = p3 {
Expect.equals(1, x);
Expect.equals("", y);
Expect.isNotNull(z);
Expect.identical(p3, z);
Expect.isTrue(z is D);
}
}
class B <T extends A> {
A? t;
B(): t = new A() {
Expect.isNotNull(t);
checkType(checkIs<A>, true, t);
}
}
class C<T, U> {
T a;
U b;
C.name(): a = p1, b = p3 {
Expect.equals(p1, a);
Expect.identical(p3, b);
Expect.isNotNull(b);
Expect.isTrue(b is D);
}
}
main() {
p1 = 1;
p2 = "";
p3 = new D();
new A<int, String, D>();
new B<A>();
new C<int, D>.name();
}