mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-14 18:55:48 +01:00
c7b8813c47
The things are also covered by the doc tests but this also gives us assertions on the errors produced, which is the whole point of this crate :)
12 lines
364 B
Text
12 lines
364 B
Text
error: too many extractors. 16 extractors are allowed
|
|
note: you can nest extractors like "a: (Extractor, Extractor), b: (Extractor, Extractor)"
|
|
--> tests/fail/too_many_extractors.rs:5:5
|
|
|
|
|
5 | / e1: String,
|
|
6 | | e2: String,
|
|
7 | | e3: String,
|
|
8 | | e4: String,
|
|
... |
|
|
20 | | e16: String,
|
|
21 | | e17: String,
|
|
| |________________^
|