blob: 99870e1b1e107504ca8502ce81bd89c28741ff4f [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
* @compile-error
* @issue #24280
* @author a.semenov@unipro.ru
*/
import 'dart:mirrors';
import 'syntax_lib2.dart' as syntax_lib2;
@syntax_lib2()
class B {}
main() {
// have to retrieve metadata to get the compile error
reflectClass(B).metadata.map( (e) => e.reflectee ).join(' ');
}