blob: 1e81eaab1284ae5b7f1d4973bfc114ce4572c471 [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.
// No library declaration.
import 'dart:mirrors';
import 'package:expect/expect.dart';
class C {}
main() {
Expect.equals(const Symbol(""), reflectClass(C).owner.simpleName);
}