Sign in
dart
/
sdk.git
/
refs/tags/2.13.0-140.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
runtime_checks
/
call_kinds.dart.textual_outline.expect
blob: 6098d6031fd8bf2eb39a590f55f72fbb87717d56 [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
typedef
void
F
();
class
C
{
void
f
()
{}
F
get
g
=>
null
;
dynamic
get
h
=>
null
;
void
test
()
{}
}
void
test
(
C c
,
F f
,
dynamic
d
)
{}
main
()
{}