]> git.proxmox.com Git - rustc.git/blame - src/test/ui/parser/issues/issue-58856-2.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / parser / issues / issue-58856-2.rs
CommitLineData
9fa01778
XL
1struct Empty;
2
3trait Howness {}
4
5impl Howness for () {
6 fn how_are_you(&self -> Empty {
7 //~^ ERROR expected one of `)` or `,`, found `->`
8 //~| ERROR method `how_are_you` is not a member of trait `Howness`
9 Empty
10 }
11}
74b04a01 12//~^ ERROR non-item in item list
9fa01778
XL
13
14fn main() {}