Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
general
/
redirecting_factory_typeparambounds_test.dart.textual_outline_modelled.expect
blob: ec53c69be49b0d65b5538a13ff86611e261a639b [
file
] [
log
] [
blame
]
// @dart = 2.9
library redirecting_factory_constructors
.
typeparambounds_test
;
class
A
<
T
,
S
extends
T
>
{
A
(
T t
,
S s
);
factory A
.
redir
(
T t
,
S s
)
=
A
<
T
,
S
>;
}
class
X
{}
class
Y
extends
X
{}
main
()
{}