blob: e0c72a5370a0a1a3f577a1401d2081f4ddb8cce7 [file] [log] [blame]
// Copyright (c) 2013, 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.
// @dart = 2.9
import 'dart:mirrors';
main() {
var name = MirrorSystem.getName(#foo);
if (name != 'foo') throw 'Wrong name: $name != foo';
}