Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
runtime_checks_new
/
derived_class_typed.dart.textual_outline_modelled.expect
blob: fc92324b4814a6aba3f8cbe60af4466737c355e0 [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
class
B
<
T
>
{
void
f
(
T x
)
{}
void
g
({
T x
})
{}
void
h
<
U
extends
T
>()
{}
}
class
C
extends
B
<int>
{}
void
g1
(
B
<num>
b
)
{}
void
g2
(
C c
)
{}
void
main
()
{}
void
test
()
{}