blob: 786831523ac6c67d71cc55a686c6f6ef353afeb5 [file] [log] [blame]
library lib;
@MirrorsUsed(targets: "lib.C")
import "dart:mirrors";
class C {}
foo() {
var a = new C();
print(reflectClass(C).owner);
}