blob: 68c924ee274034be7214d18649a2402632ef9a01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// aux-build:coherence_lib.rs
// revisions: old re
#![cfg_attr(re, feature(re_rebalance_coherence))]
extern crate coherence_lib as lib;
use lib::Remote1;
impl<T> Remote1<T> for isize { }
//[old]~^ ERROR E0210
//[re]~^^ ERROR E0210
fn main() { }
|