rust/src/test/ui/symbol-names/impl2.rs

15 lines
201 B
Rust
Raw Normal View History

2019-05-11 08:48:57 -05:00
#![feature(rustc_attrs)]
#![allow(dead_code)]
trait Foo {
fn baz();
}
impl Foo for [u8; 1 + 2] {
#[rustc_def_path] //~ ERROR def-path(<[u8; _] as Foo>::baz)
fn baz() { }
}
fn main() {
}