mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 05:27:36 +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!");
|
||
|
}
|