mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
11 lines
165 B
Rust
11 lines
165 B
Rust
mod option {
|
|
pub enum O<T> {
|
|
Some(T),
|
|
None,
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let _: option::O<()> = (); //~ ERROR 9:28: 9:30: mismatched types [E0308]
|
|
}
|