blob: f933f7fbdb30ab84bca2c1c7161f4b65f1af5c94 [file] [log] [blame]
library test_lib.foo;
import 'test_lib.dart';
/**
* Doc comment for class [B].
*
* Multiline Test
*/
/*
* Normal comment for class B.
*/
class B extends A {
B();
B.fooBar();
/**
* Test for linking to super
*/
int doElse(int b) {
print(b);
return b;
}
/**
* Test for linking to parameter [c]
*/
void doThis(int c) {
print(c);
}
}
int testFunc(int a) {
return a;
}