about summary refs log tree commit diff
path: root/tests/ui/panics/panic-2021.rs
blob: 399709d5276d3cd7eae5a5781ac82c724e8e2493 (plain)
1
2
3
4
5
6
7
8
9
//@ edition:2021

fn main() {
    panic!(123); //~ ERROR: format argument must be a string literal
    panic!("{}"); //~ ERROR: 1 positional argument in format string
    core::panic!("{}"); //~ ERROR: 1 positional argument in format string
    assert!(false, 123); //~ ERROR: format argument must be a string literal
    assert!(false, "{}"); //~ ERROR: 1 positional argument in format string
}