blob: 6b4eb28b15f1d3c5ec045ff6c0c02383f587ea64 [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 if metadata expression refers to not defined class
* or constant, then a compile time error is raised
* @author a.semenov@unipro.ru
*/
import 'dart:mirrors';
// ^
// [web] Not found: 'dart:mirrors'
@Hello
//^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
class A {}
main() {
// have to retrieve metadata to get the compile error
reflectClass(A).metadata.map( (e) => e.reflectee ).join(' ');
//^
// [web] Method not found: 'reflectClass'.
}