Abiria
Abiria
same here
and this is a duplicate to #109.
(μ€μ μ μ© νλ©΄μ λλ€) * Google Chrome   * Chromium 
any updates here?
it looks like there is a similar or related issue: #1939
I got the same error on Arch Linux `(5.17.9-arch1-1)`
`set_xxx()` methods are quite useful for inline mutation of the builder, particularly within loops(including `fold` iterator). ```rs let mut report_builder = Report::build(...); for my_error in errors { report_builder.add_label(Label::new(...)); } report_builder.finish();...
You should manually implement `Diagnostic` in this case I guess?
It would be great if the macro could automatically support [LabeledSpan](https://docs.rs/miette/latest/miette/struct.LabeledSpan.html#), as demonstrated below: ```rs #[derive(Error, Debug, Diagnostic)] #[error("oops!")] #[diagnostic( code(oops::my::bad), url(docsrs), help("try doing it better next time?") )] struct...
You can use [this code here](https://github.com/vitejs/vite/discussions/1791#discussioncomment-321046) too