Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
instantiate_to_bound
/
typedef_instantiated_in_outline.dart.textual_outline.expect
blob: 03874826640ae0814a30be749f83c69d6ed5156f [
file
] [
log
] [
blame
]
typedef
A
<
T
extends
num
>(
T p
);
class
B
{
foo
(
A a
)
=>
throw
''
;
A bar
()
=>
throw
''
;
}
main
()
{}