dart-sdk/tests/language_2/type_promotion_more_specific_test.dart
Ben Konyi 5bb98ebc33 Migrated test block 161 to Dart 2.0.
This block contained a lot of static type warnings and took a lot of
status file wrangling to get right.

Bug:
Change-Id: I037402a31f978af15716964c8ff5192036df4276
Reviewed-on: https://dart-review.googlesource.com/7440
Reviewed-by: Phil Quitslund <pquitslund@google.com>
Reviewed-by: Erik Ernst <eernst@google.com>
2017-09-28 17:15:51 +00:00

91 lines
1.5 KiB
Dart

// Copyright (c) 2013, 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.
// Test use of more specific in type promotion of interface types.
class A {
var a;
}
class B extends A {
var b;
}
class C {
var c;
}
class D<T> {
T d;
D(this.d);
}
class E<T> extends D<T> {
T e;
E(e)
: this.e = e,
super(e);
}
void main() {
testInterface();
testGeneric();
}
void testInterface() {
var x;
var y;
A a = new B();
if (a is B) {
// Promotion B << A.
x = a.b; //# 01: ok
}
if (a is C) {
// No promotion C !<< A.
x = a.c; //# 02: compile-time error
}
B b = new B();
if (b is A) {
// No promotion B !<< A.
x = b.b; //# 03: ok
}
if (x is A) {
// No promotion: x has type dynamic.
y = x.b; //# 04: ok
}
}
testGeneric() {
var x;
var y;
D d1 = new E<B>(null);
if (d1 is E) {
// Promotion: E << D.
x = d1.e; //# 05: ok
}
if (d1 is E<A>) {
// Promotion: E<A> << D.
int a = d1.d; //# 06: compile-time error
String b = d1.d; //# 07: compile-time error
x = d1.e; //# 08: ok
}
D<A> d2 = new E<B>(null);
if (d2 is E) {
// No promotion: E !<< D<A>
x = d2.e; //# 09: compile-time error
}
D<A> d3 = new E<B>(new B());
if (d3 is E<B>) {
// Promotion: E<B> << D<A>
x = d3.d.b; //# 12: ok
x = d3.e.b; //# 13: ok
}
}