mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
10 lines
181 B
Rust
10 lines
181 B
Rust
//@ 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!");
|
|
}
|