Update compile-fail tests due to changed diagnostics

This commit is contained in:
Brian Koropoff 2014-08-19 09:00:35 -07:00
parent e0cfe10aad
commit a40e2a6463
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use std::slice as std; //~ ERROR import conflicts with imported crate
use std::slice as std; //~ ERROR import `std` conflicts with imported crate
fn main() {
}

View File

@ -9,7 +9,7 @@
// except according to those terms.
use std::mem::transmute;
//~^ ERROR import conflicts with value in this module
//~^ ERROR import `transmute` conflicts with value in this module
fn transmute() {}