summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0232.rs
blob: 8e8062436d6e599cfeff183486a66b6a00e1dcb6 (plain)
1
2
3
4
5
6
7
8
#![feature(on_unimplemented)]

#[rustc_on_unimplemented]
//~^ ERROR E0232
trait Bar {}

fn main() {
}