mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 01:08:18 +00:00
11 lines
181 B
Plaintext
11 lines
181 B
Plaintext
// Issue: 101797, Suggest associated const for incorrect use of let in traits
|
|
// run-rustfix
|
|
trait Trait {
|
|
const _X: i32;
|
|
//~^ ERROR non-item in item list
|
|
}
|
|
|
|
fn main() {
|
|
|
|
}
|