]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/coherence/coherence-blanket.rs
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / run-pass / coherence / coherence-blanket.rs
CommitLineData
b7449926 1// run-pass
0bf4aa26 2#![allow(unused_imports)]
c34b1796 3// aux-build:coherence_lib.rs
0731742a
XL
4// revisions: old re
5
6#![cfg_attr(re, feature(re_rebalance_coherence))]
223e47cc 7
c34b1796
AL
8// pretty-expanded FIXME #23616
9
10extern crate coherence_lib as lib;
1a4d82fc
JJ
11use lib::Remote1;
12
13pub trait Local {
14 fn foo(&self) { }
15}
16
17impl<T> Local for T { }
223e47cc
LB
18
19fn main() { }