Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
general
/
invalid_cast.dart.textual_outline.expect
blob: 743e9d94b6a787416580d44687e4ba2da2666ece [
file
] [
log
] [
blame
]
// @dart = 2.9
class
C
{
C
();
factory C
.
fact
()
=>
null
;
factory C
.
fact2
()
=
D
;
C
.
nonFact
();
C
.
nonFact2
()
:
this
.
nonFact
();
static
void
staticFunction
(
int
i
)
{}
}
class
D
extends
C
{}
void
topLevelFunction
(
int
i
)
{}
bad
()
{}
ok
()
{}
main
()
{}