blob: f960e93c0394b81ea6f65bab3b78ba54e5033a8d [file] [log] [blame]
// 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.
/// @assertion It is a compile time error if the expression is not one of the
/// following:
/// • A reference to a compile-time constant variable.
/// • A call to a constant constructor.
/// @description Check that it is a compile time error, if qualified identifier
/// is not complete
/// @issue #24280
/// @author a.semenov@unipro.ru
import 'syntax_lib2.dart' as syntax_lib2;
@syntax_lib2()
//^^^^^^^^^^^^^^
// [analyzer] unspecified
// ^^^^^^^^^^^^^
// [cfe] unspecified
class B {}
main() {
B? b;
}