blob: a2362e3d401abff784c754803666f0b55af9cd23 [file] [log] [blame]
// Copyright (c) 2021, 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 Local variables with no explicitly written type but with an
/// initializer are given an inferred type equal to the type of their
/// initializer, unless that type is Null, in which case the inferred type of the
/// variable shall be dynamic.
///
/// @description Checks that local variables with no explicitly written type but
/// with an initializer of type Null are given an inferred type equal to the
/// dynamic
///
/// @author sgrekhov@unipro.ru
// Requirements=nnbd-strong
import "../../Utils/expect.dart";
main() {
var x = null;
Expect.throws(() {x.everything();});
x = 42;
x = "Lily was here";
var y;
Expect.throws(() {y.everything;});
y = 42;
y = "Lily was here";
}