7 lines
143 B
Rust
7 lines
143 B
Rust
|
#![feature(const_trait_impl)]
|
||
|
|
||
|
const fn tilde_question<T: ~const ?Sized>() {}
|
||
|
//~^ ERROR `~const` and `?` are mutually exclusive
|
||
|
|
||
|
fn main() {}
|