Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// error-pattern:nonexistent
class cat : nonexistent {
let meows: usize;
new(in_x : usize) { self.meows = in_x; }
}
fn main() {
let nyan = cat(0);