rust/tests/ui/hygiene/nested-dollar-crate.rs

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

10 lines
181 B
Rust
Raw Normal View History

//@ aux-build:nested-dollar-crate.rs
//@ edition:2018
//@ run-pass
extern crate nested_dollar_crate;
fn main() {
assert_eq!(nested_dollar_crate::inner!(), "In def crate!");
}