Skip to content

Instantly share code, notes, and snippets.

@BlackHC
Created April 16, 2017 09:54
Show Gist options
  • Save BlackHC/e7b30fcfd0868f2aa8823b5cbde4a37d to your computer and use it in GitHub Desktop.
Save BlackHC/e7b30fcfd0868f2aa8823b5cbde4a37d to your computer and use it in GitHub Desktop.
Import spike
class A {
int f() => 1;
}
import 'import_1.dart';
export 'import_1.dart';
class A {
int f() => 2;
}
import 'import_2.dart';
void main() {
result = new A().f();
print(result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment