2018-08-30 12:18:55 +00:00
|
|
|
//@ run-pass
|
2015-03-22 20:13:15 +00:00
|
|
|
|
2015-01-02 22:44:21 +00:00
|
|
|
macro_rules! sty {
|
2014-07-19 09:59:44 +00:00
|
|
|
($t:ty) => (stringify!($t))
|
2015-01-02 22:44:21 +00:00
|
|
|
}
|
2014-07-19 09:59:44 +00:00
|
|
|
|
2015-01-02 22:44:21 +00:00
|
|
|
macro_rules! spath {
|
2014-07-19 09:59:44 +00:00
|
|
|
($t:path) => (stringify!($t))
|
2015-01-02 22:44:21 +00:00
|
|
|
}
|
2014-07-19 09:59:44 +00:00
|
|
|
|
|
|
|
fn main() {
|
2015-03-26 00:06:52 +00:00
|
|
|
assert_eq!(sty!(isize), "isize");
|
2014-11-14 17:18:10 +00:00
|
|
|
assert_eq!(spath!(std::option), "std::option");
|
2014-07-19 09:59:44 +00:00
|
|
|
}
|