| Index: pkg/front_end/testcases/inference/list_literals_can_infer_null_bottom.dart
|
| diff --git a/pkg/front_end/testcases/inference/list_literals_can_infer_null_bottom.dart b/pkg/front_end/testcases/inference/list_literals_can_infer_null_bottom.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..44eb5eea8bc7c87cb59ef7c0112509e12fd58871
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/list_literals_can_infer_null_bottom.dart
|
| @@ -0,0 +1,11 @@
|
| +// Copyright (c) 2017, 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.
|
| +
|
| +/*@testedFeatures=inference*/
|
| +library test;
|
| +
|
| +test1() {
|
| + var /*@type=List<Null>*/ x = /*@typeArgs=Null*/ [null];
|
| + /*@promotedType=none*/ x.add(/*error:INVALID_CAST_LITERAL*/ 42);
|
| +}
|
|
|