mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
16 lines
219 B
Rust
16 lines
219 B
Rust
//@ build-fail
|
|
|
|
#![feature(rustc_attrs)]
|
|
#![allow(dead_code)]
|
|
|
|
trait Foo {
|
|
fn baz();
|
|
}
|
|
|
|
impl Foo for [u8; 1 + 2] {
|
|
#[rustc_def_path] //~ ERROR def-path(<[u8; 1 + 2] as Foo>::baz)
|
|
fn baz() {}
|
|
}
|
|
|
|
fn main() {}
|