mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-21 17:52:12 +03:00
15 lines
230 B
Rust
15 lines
230 B
Rust
//@ run-pass
|
|
|
|
macro_rules! sty {
|
|
($t:ty) => (stringify!($t))
|
|
}
|
|
|
|
macro_rules! spath {
|
|
($t:path) => (stringify!($t))
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(sty!(isize), "isize");
|
|
assert_eq!(spath!(std::option), "std::option");
|
|
}
|