Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
traits
/
const-traits
/
const_derives
/
derive-const-gate.rs
blob: c0796907855ad3eb8315e0a933ea27f0dc27895e [
file
] [
log
] [
blame
] [
edit
]
#[
derive_const
(
Debug
)]
//~ ERROR use of unstable library feature
//~^ ERROR const `impl` for trait `Debug` which is not `const`
//~| ERROR cannot call non-const method
pub
struct
S
;
fn
main
()
{}