2023-05-29 15:36:06 -05:00
|
|
|
// check-pass
|
2018-08-11 03:13:57 -05:00
|
|
|
// edition:2018
|
|
|
|
|
2018-12-16 21:21:47 -06:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
|
2023-05-29 15:36:06 -05:00
|
|
|
use std::io; // OK
|
2018-08-11 03:13:57 -05:00
|
|
|
|
|
|
|
mod std {
|
|
|
|
pub struct io;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|