mirror of https://github.com/rust-lang/rust.git
15 lines
286 B
Rust
15 lines
286 B
Rust
//@ proc-macro: parse-invis-delim-issue-128895.rs
|
|
//@ check-pass
|
|
|
|
#![no_std] // Don't load unnecessary hygiene information from std
|
|
extern crate std;
|
|
|
|
#[macro_use]
|
|
extern crate parse_invis_delim_issue_128895;
|
|
|
|
trait Comparable {}
|
|
|
|
parse_invis_delim_issue_128895::main!();
|
|
|
|
fn main() {}
|