Sign in
dart
/
dartdoc.git
/
4ac49cfd
/
.
/
testing
/
test_package_bad
/
lib
/
test_package_bad.dart
blob: 5216a07899c4153b9d303634642e04056aaeb145 [
file
] [
log
] [
blame
]
// This library does not exist.
import
'foo.dart'
;
/// Some sample `dartdoc` comments here.
void
myTestFunction
()
{
print
(
'one'
);
print
(
'two'
);
// This class cannot be found.
Foo foo
=
Foo
(
'three'
);
}