8de8a1c226
They are all errors now. Change-Id: If48d38e38e845fd5b5a950dd5514bf1cbbce03d8 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/155880 Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
38 lines
1.2 KiB
Dart
38 lines
1.2 KiB
Dart
// Copyright (c) 2015, 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 'package:expect/expect.dart';
|
|
|
|
import 'access_lib.dart';
|
|
import 'access_lib.dart' as private;
|
|
|
|
main() {
|
|
_function();
|
|
//^^^^^^^^^
|
|
// [analyzer] COMPILE_TIME_ERROR.UNDEFINED_FUNCTION
|
|
// [cfe] Method not found: '_function'.
|
|
private._function();
|
|
//^
|
|
// [cfe] Method not found: '_function'.
|
|
// ^^^^^^^^^
|
|
// [analyzer] COMPILE_TIME_ERROR.UNDEFINED_FUNCTION
|
|
new _Class();
|
|
// ^^^^^^
|
|
// [analyzer] COMPILE_TIME_ERROR.CREATION_WITH_NON_TYPE
|
|
// [cfe] Method not found: '_Class'.
|
|
private._Class();
|
|
//^
|
|
// [cfe] Method not found: '_Class'.
|
|
// ^^^^^^
|
|
// [analyzer] COMPILE_TIME_ERROR.UNDEFINED_FUNCTION
|
|
new Class._constructor();
|
|
// ^^^^^^^^^^^^
|
|
// [analyzer] COMPILE_TIME_ERROR.NEW_WITH_UNDEFINED_CONSTRUCTOR
|
|
// [cfe] Method not found: 'Class._constructor'.
|
|
new private.Class._constructor();
|
|
// ^^^^^^^^^^^^
|
|
// [analyzer] COMPILE_TIME_ERROR.NEW_WITH_UNDEFINED_CONSTRUCTOR
|
|
// [cfe] Method not found: 'Class._constructor'.
|
|
}
|