blob: 1a3f1c899cfa21c2b63361630f09aab53d73a4eb [file] [log] [blame]
// Copyright (c) 2012, 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.
class A {
get className => runtimeType;
}
main() {
Expect.isTrue(new A().className is Type);
}