mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 05:04:23 +00:00
12 lines
171 B
Rust
12 lines
171 B
Rust
//@ build-pass (FIXME(62277): could be check-pass?)
|
|
|
|
#![feature(rustc_attrs)]
|
|
#![feature(test)]
|
|
|
|
mod m {
|
|
#[rustc_dummy = "bar"]
|
|
extern crate test;
|
|
}
|
|
|
|
fn main() {}
|