pub export fn entry() void { const foo: anyerror!u32 = error.Failure; const bar, const baz = foo; _ = bar; _ = baz; } // error // // :3:28: error: type 'anyerror!u32' cannot be destructured // :3:26: note: result destructured here