mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 09:44:00 +00:00
11 lines
130 B
Rust
11 lines
130 B
Rust
//@ run-pass
|
|
#![allow(unused_imports)]
|
|
//@ compile-flags:--test
|
|
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
pub fn test(){}
|
|
}
|