2018-08-11 08:13:57 +00:00
|
|
|
// edition:2018
|
|
|
|
|
2018-12-17 03:21:47 +00:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
|
2018-08-11 08:13:57 +00:00
|
|
|
use std::io;
|
2018-11-04 22:11:59 +00:00
|
|
|
//~^ ERROR `std` is ambiguous
|
2018-08-11 08:13:57 +00:00
|
|
|
|
|
|
|
mod std {
|
|
|
|
pub struct io;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|