Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
auxiliary
/
default-ty-param-cross-crate-crate.rs
blob: d722b78768a47692bd3623fef32f4646509fdfc6 [
file
] [
log
] [
blame
] [
edit
]
#![
crate_type
=
"lib"
]
#![
crate_name
=
"default_param_test"
]
#![
feature
(
default_type_parameter_fallback
)]
use
std
::
marker
::
PhantomData
;
pub
struct
Foo
<
A
,
B
>(
PhantomData
<(
A
,
B
)>);
pub
fn
bleh
<
A
=
i32
,
X
=
char
>()
->
Foo
<
A
,
X
>
{
Foo
(
PhantomData
)
}