blob: bf1fbbc5426e1c51a88ca5dabdfdf77e0e4e0256 [file] [log] [blame]
library main;
// Test that the library-mirrors are updated after loading a deferred library.
import "dart:mirrors";
import "deferred_mirrors_update_lib.dart" deferred as l;
class D {}
void main() {
print(reflectClass(D).owner);
l.loadLibrary().then((_) {
l.foo();
});
}