2014-07-19 09:59:44 +00:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
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
|
|
|
}
|