blob: 3cb83823f1ae64123c90e13a7a9f8e7a0bfb5ccc [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 constant
}