blob: 76af3397d60c364cf0f455b08053b1a7141718fc [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 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
}
}