1
Fork 0

Remove NOTE/HELP annotations from UI tests

This commit is contained in:
Vadim Petrochenkov 2017-12-10 23:29:24 +03:00
parent d4e51a8fb2
commit 1f5b201aff
462 changed files with 1841 additions and 2899 deletions

View file

@ -22,9 +22,7 @@ use std::{u8, u16, u32, u64, usize};
const A_I8_T
: [u32; (i8::MAX as i8 + 1i8) as usize]
//~^ ERROR constant evaluation error
//~^^ NOTE attempt to add with overflow
//~| WARNING constant evaluation error
//~| NOTE on by default
= [0; (i8::MAX as usize) + 1];
fn main() {
@ -34,4 +32,3 @@ fn main() {
fn foo<T:fmt::Debug>(x: T) {
println!("{:?}", x);
}