Updated E0394 to new error message

This commit is contained in:
Knight 2016-08-17 01:40:57 +08:00
parent d2e78956c3
commit 3caa451b9d
2 changed files with 8 additions and 2 deletions

View file

@ -9,7 +9,10 @@
// except according to those terms.
static A: u32 = 0;
static B: u32 = A; //~ ERROR E0394
static B: u32 = A;
//~^ ERROR E0394
//~| NOTE referring to another static by value
//~| NOTE use the address-of operator or a constant instead
fn main() {
}