rust/tests/ui/deriving/built-in-proc-macro-scope.rs

26 lines
438 B
Rust

//@ check-pass
//@ aux-build: another-proc-macro.rs
//@ compile-flags: -Zunpretty=expanded
#![feature(derive_smart_pointer)]
#[macro_use]
extern crate another_proc_macro;
use another_proc_macro::{pointee, AnotherMacro};
#[derive(core::marker::SmartPointer)]
#[repr(transparent)]
pub struct Ptr<'a, #[pointee] T: ?Sized> {
data: &'a mut T,
}
#[pointee]
fn f() {}
#[derive(AnotherMacro)]
#[pointee]
struct MyStruct;
fn main() {}