about summary refs log tree commit diff
path: root/tests/ui/diagnostic_namespace/on_unimplemented/auxiliary/other.rs
blob: 884bab2800a5b991b2ff6eaa8ae3243226fd2e9d (plain)
1
2
3
4
5
6
7
8
#![feature(diagnostic_namespace)]

#[diagnostic::on_unimplemented(
    message = "Message",
    note = "Note",
    label = "label"
)]
pub trait Foo {}