rust/tests/ui/issues/issue-31011.stderr

18 lines
584 B
Plaintext
Raw Normal View History

2018-07-15 21:11:54 +00:00
error[E0609]: no field `trace` on type `&T`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-31011.rs:3:17
2018-07-15 21:11:54 +00:00
|
LL | if $ctx.trace {
2023-11-09 06:01:10 +00:00
| ^^^^^ unknown field
2018-07-15 21:11:54 +00:00
...
2019-09-28 11:39:19 +00:00
LL | fn wrap<T>(context: &T) -> ()
| - type parameter 'T' declared here
LL | {
2018-07-15 21:11:54 +00:00
LL | log!(context, "entered wrapper");
2021-10-14 18:28:28 +00:00
| -------------------------------- in this macro invocation
|
= note: this error originates in the macro `log` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-07-15 21:11:54 +00:00
error: aborting due to 1 previous error
2018-07-15 21:11:54 +00:00
For more information about this error, try `rustc --explain E0609`.