mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
8 lines
244 B
Rust
8 lines
244 B
Rust
struct Foo {}
|
|
|
|
impl<const UNUSED: usize> Drop for Foo {}
|
|
//~^ ERROR: `Drop` impl requires `the constant `_` has type `usize``
|
|
//~| ERROR: the const parameter `UNUSED` is not constrained by the impl trait, self type, or predicates
|
|
|
|
fn main() {}
|