Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
coherence
/
coherence-pair-covered-uncovered.rs
blob: 3e5fceacabf6eea6fb7761ec84e073389ef66234 [
file
] [
log
] [
blame
] [
edit
]
//@ aux-build:coherence_lib.rs
extern
crate coherence_lib
as
lib
;
use
lib
::{
Remote
,
Pair
};
struct
Local
<
T
>(
T
);
impl
<
T
,
U
>
Remote
for
Pair
<
T
,
Local
<
U
>>
{
}
//~^ ERROR E0117
fn
main
()
{
}