mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 11:50:45 +00:00
14 lines
217 B
Rust
14 lines
217 B
Rust
//@ build-pass (FIXME(62277): could be check-pass?)
|
|
//@ aux-build:test_macro.rs
|
|
//@ compile-flags:--test
|
|
|
|
#[macro_use] extern crate test_macro;
|
|
|
|
#[test]
|
|
fn foo(){}
|
|
|
|
macro_rules! test { () => () }
|
|
|
|
#[test]
|
|
fn bar() {}
|