about summary refs log tree commit diff
path: root/src/test/run-pass/proc-macro/negative-token.rs
blob: 751d1a43a0a9a17e3407f7e594e62d0024cc84df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// aux-build:negative-token.rs

#![feature(proc_macro_hygiene)]

extern crate negative_token;

use negative_token::*;

fn main() {
    assert_eq!(-1, neg_one!());
    assert_eq!(-1.0, neg_one_float!());
}