Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-2312.rs
blob: 8a94bcbd4cc181133e5aad4c3b6f3bbff30000e5 [
file
] [
log
] [
blame
]
// check-pass
#![
allow
(
dead_code
)]
#![
allow
(
non_camel_case_types
)]
// Testing that the B's are resolved
trait
clam
<
A
>
{
fn
get
(
self
)
->
A
;
}
struct
foo
(
isize
);
impl
foo
{
pub
fn
bar
<
B
,
C
:
clam
<
B
>>(&
self
,
_c
:
C
)
->
B
{
panic
!();
}
}
pub
fn
main
()
{
}