rust/tests/ui/parser/issues/issue-58856-2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
166 B
Rust
Raw Normal View History

struct Empty;
trait Howness {}
impl Howness for () {
fn how_are_you(&self -> Empty {
Empty
}
} //~ ERROR mismatched closing delimiter
fn main() {}