about summary refs log tree commit diff
path: root/tests/ui/hygiene/no_implicit_prelude-2021.rs
blob: 9e793ec7c6d97a3641e05d12cbe9e7e446a6938e (plain)
1
2
3
4
5
6
7
8
9
//@ check-pass
//@ edition:2021

#![no_implicit_prelude]

fn main() {
    assert!(true, "hoi");
    assert!(false, "hoi {}", 123);
}