mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 17:25:45 +00:00
16 lines
235 B
Rust
16 lines
235 B
Rust
#![feature(fundamental)]
|
|
|
|
// compile-flags:--crate-name=test
|
|
// aux-build:coherence_lib.rs
|
|
// check-pass
|
|
|
|
extern crate coherence_lib as lib;
|
|
use lib::*;
|
|
|
|
#[fundamental]
|
|
struct MyBox<T>(T);
|
|
|
|
impl<T> Remote for MyBox<T> {}
|
|
|
|
fn main() {}
|