mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 13:46:03 +00:00
12 lines
326 B
Rust
12 lines
326 B
Rust
// The original problem in #66340 was that `find_deprecation_generic`
|
|
// called `attr.meta().unwrap()` under the assumption that the attribute
|
|
// was a well-formed `MetaItem`.
|
|
|
|
fn main() {
|
|
foo()
|
|
}
|
|
|
|
#[deprecated(note = test)]
|
|
//~^ ERROR expected a literal (`1u8`, `1.0f32`, `"string"`, etc.) here, found `test`
|
|
fn foo() {}
|