rust/tests/ui/macros/issue-77475.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
141 B
Rust
Raw Normal View History

2020-10-23 07:09:17 +00:00
//@ check-pass
// Regression test of #77475, this used to be ICE.
#![feature(decl_macro)]
use crate as _;
pub macro ice(){}
fn main() {}