about summary refs log tree commit diff
path: root/tests/ui/async-await/async-await.rs
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2025-06-11 17:05:01 +0000
committerEsteban Küber <esteban@kuber.com.ar>2025-08-15 15:56:45 +0000
commit8baab4cdf77979aed3ed7a5617df651c3e933405 (patch)
tree2e9cebd3698e22b3a93a37ca2a2f2e648c33b5fb /tests/ui/async-await/async-await.rs
parentc018ae5389c49cc4bcb8343d80dd8e7323325410 (diff)
downloadrust-8baab4cdf77979aed3ed7a5617df651c3e933405.tar.gz
rust-8baab4cdf77979aed3ed7a5617df651c3e933405.zip
Detect missing `derive` on unresolved attribute even when not imported
```
error: cannot find attribute `sede` in this scope
  --> $DIR/missing-derive-3.rs:20:7
   |
LL |     #[sede(untagged)]
   |       ^^^^
   |
help: the derive macros `Deserialize` and `Serialize` accept the similarly named `serde` attribute
   |
LL |     #[serde(untagged)]
   |         +

error: cannot find attribute `serde` in this scope
  --> $DIR/missing-derive-3.rs:14:7
   |
LL |     #[serde(untagged)]
   |       ^^^^^
   |
note: `serde` is imported here, but it is a crate, not an attribute
  --> $DIR/missing-derive-3.rs:4:1
   |
LL | extern crate serde;
   | ^^^^^^^^^^^^^^^^^^^
help: `serde` is an attribute that can be used by the derive macros `Deserialize` and `Serialize`, you might be missing a `derive` attribute
   |
LL + #[derive(Deserialize, Serialize)]
LL | enum B {
   |
```
Diffstat (limited to 'tests/ui/async-await/async-await.rs')
0 files changed, 0 insertions, 0 deletions