mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-04 19:28:29 +00:00
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() {}
|