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