blob: f918c53b7a8c11edde740a6ced12470bf614e7a6 [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.
/// @description Check that if type T0 is not a subtype of a type T1, then
/// instance of T0 cannot be assigned to the to local variable of type T1.
/// Assignment to local variable is tested.
/// @author sgrekhov@unipro.ru
/// @author ngl@unipro.ru
class LocalVariableTest {
LocalVariableTest() {
@T1 t1 = t0Instance;
// ^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
test() {
@T1 t1 = t0Instance;
// ^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
static staticTest() {
@T1 t1 = t0Instance;
// ^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
}
main() {
@T1 t1 = t0Instance;
// ^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
bar () {
@T1 t1 = t0Instance;
// ^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
}