2019-03-01 23:47:06 -06:00
|
|
|
struct Empty;
|
|
|
|
|
2019-03-01 18:28:04 -06:00
|
|
|
trait Howness {}
|
2019-03-01 23:47:06 -06:00
|
|
|
|
2019-03-01 18:28:04 -06:00
|
|
|
impl Howness for () {
|
|
|
|
fn how_are_you(&self -> Empty {
|
|
|
|
Empty
|
|
|
|
}
|
2023-02-28 01:55:19 -06:00
|
|
|
} //~ ERROR mismatched closing delimiter
|
2019-03-01 18:28:04 -06:00
|
|
|
|
|
|
|
fn main() {}
|