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