cf67e402bd
Also modify async_backwards_compatibility_1_test so that fixing these bugs won't cause it to start failing. Change-Id: I7bb3b9587a0aeea8662df1923034bcb409a29522 Reviewed-on: https://dart-review.googlesource.com/75280 Reviewed-by: Lasse R.H. Nielsen <lrn@google.com> Commit-Queue: Paul Berry <paulberry@google.com>
15 lines
367 B
Dart
15 lines
367 B
Dart
// 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.
|
|
|
|
import 'dart:core';
|
|
import 'dart:core' as core;
|
|
|
|
class A {
|
|
/*@compile-error=unspecified*/ core.List get core => null;
|
|
}
|
|
|
|
main() {
|
|
new A().core;
|
|
}
|