2025-06-02 10:57:01 +02:00
|
|
|
//@ aux-build: borrowck-error-in-macro.rs
|
2025-06-02 11:15:20 +02:00
|
|
|
//@ error-pattern: a call in this macro requires a mutable binding due to mutable borrow of `d`
|
2025-06-02 13:21:18 +02:00
|
|
|
//FIXME: remove error-pattern (see #141896)
|
2025-06-02 10:57:01 +02:00
|
|
|
|
|
|
|
|
extern crate borrowck_error_in_macro as a;
|
|
|
|
|
|
|
|
|
|
a::ice! {}
|
2025-06-02 11:15:20 +02:00
|
|
|
//~^ ERROR cannot borrow value as mutable, as it is not declared as mutable
|