about summary refs log tree commit diff
path: root/src/test/ui/feature-gates/feature-gate-no-debug-2.rs
blob: b399bd2cc0f8d1cc2ee5fb1b6b137a8a3e1676cc (plain)
1
2
3
4
5
#![deny(deprecated)]
#![feature(no_debug)]

#[no_debug] //~ ERROR use of deprecated attribute `no_debug`
fn main() {}