blob: eebbd94b09a6ae1837cc2e7a5217bd7964e74411 [file] [log] [blame]
library lib;
import "2_Factories_A01_t01.dart" as test;
// References a factory class in another library
abstract class A {
factory A () { return new test.AImpl(); }
factory A.named() {return new test.AImpl();}
int methodA();
}