mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-28 11:17:26 +03:00
13 lines
125 B
Rust
13 lines
125 B
Rust
#![feature(extern_item_impls)]
|
|
|
|
#[eii(foo)]
|
|
fn x();
|
|
|
|
#[foo]
|
|
fn y(a: u64) -> u64 {
|
|
//~^ ERROR E0806
|
|
a
|
|
}
|
|
|
|
fn main() {}
|