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