summary refs log tree commit diff
path: root/src/test/ui/consts/recursive-zst-static.rs
blob: df7562bd9f5d212f4391e207f007d9572af6e778 (plain)
1
2
3
4
5
6
7
// build-pass

static FOO: () = FOO;

fn main() {
    FOO
}