Files
rust/tests/ui/proc-macro/expand-to-unstable.rs
2025-09-26 15:33:48 +02:00

16 lines
237 B
Rust

//@ proc-macro: derive-unstable.rs
//@ ignore-backends: gcc
#![allow(warnings)]
#[macro_use]
extern crate derive_unstable;
#[derive(Unstable)]
//~^ ERROR: use of unstable library feature
struct A;
fn main() {
unsafe { foo(); }
}