]> git.proxmox.com Git - rustc.git/blame - src/test/ui/coherence/impl-foreign-for-fundamental[foreign].rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / coherence / impl-foreign-for-fundamental[foreign].rs
CommitLineData
e74abb32
XL
1// compile-flags:--crate-name=test
2// aux-build:coherence_lib.rs
3
4extern crate coherence_lib as lib;
5use lib::*;
6use std::rc::Rc;
7
8struct Local;
9
10impl Remote for Box<i32> {
11 //~^ ERROR only traits defined in the current crate
12 // | can be implemented for arbitrary types [E0117]
13}
14impl<T> Remote for Box<Rc<T>> {
15 //~^ ERROR only traits defined in the current crate
16 // | can be implemented for arbitrary types [E0117]
17}
18
19fn main() {}