cd2f133e77
R=alanknight@google.com Review URL: https://codereview.chromium.org//172873002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@32821 260f80e4-7a28-3924-810f-c04153c831b5
14 lines
200 B
Dart
14 lines
200 B
Dart
library testLib.bar;
|
|
import 'temp.dart';
|
|
|
|
/*
|
|
* Normal comment for class C.
|
|
*/
|
|
class C {
|
|
}
|
|
|
|
// A trivial use of `A` to eliminate import warnings
|
|
A usingImport() {
|
|
throw new UnimplementedError();
|
|
}
|