blob: 60cbe36071dbdcc14b6eb749b626634003781589 [file] [log] [blame]
//@ edition:2018
//@ aux-build:external_macro.rs
// Ensure that CONST_ERR lint errors
// are not silenced in external macros.
// https://github.com/rust-lang/rust/issues/65300
extern crate external_macro;
use external_macro::static_assert;
fn main() {
static_assert!(2 + 2 == 5); //~ ERROR index out of bounds: the length is 1 but the index is 1
}