mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 09:44:08 +00:00
12 lines
166 B
Rust
12 lines
166 B
Rust
struct Empty;
|
|
|
|
trait Howness {}
|
|
|
|
impl Howness for () {
|
|
fn how_are_you(&self -> Empty {
|
|
Empty
|
|
}
|
|
} //~ ERROR mismatched closing delimiter
|
|
|
|
fn main() {}
|