mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 16:46:09 +00:00
16 lines
218 B
Rust
16 lines
218 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() {}
|