2020-03-22 06:09:24 +01:00
|
|
|
#[cfg(FALSE)]
|
|
|
|
fn syntax() {
|
2022-01-08 09:28:12 +00:00
|
|
|
bar::<Item = 42>();
|
2022-01-13 07:39:58 +00:00
|
|
|
//~^ ERROR associated const equality is incomplete
|
2022-01-08 09:28:12 +00:00
|
|
|
bar::<Item = { 42 }>();
|
2022-01-13 07:39:58 +00:00
|
|
|
//~^ ERROR associated const equality is incomplete
|
2020-03-22 06:09:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|