mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 15:04:44 +00:00
9 lines
151 B
Rust
9 lines
151 B
Rust
#![feature(diagnostic_namespace)]
|
|
|
|
#[diagnostic::on_unimplemented(
|
|
message = "Message",
|
|
note = "Note",
|
|
label = "label"
|
|
)]
|
|
pub trait Foo {}
|