Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// aux-build:issue-19163.rs
#[macro_use] extern crate issue_19163;
use std::io::Write;
fn main() {
let mut v = vec![];
mywrite!(&v, "Hello world");
//~^ ERROR cannot borrow data in a `&` reference as mutable
}