blob: 776684fd8045d065f3e4123ccd1a20d6973c62b8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// RUN: %clangxx_asan -coverage -O0 %s -o %t
// RUN: %env_asan_opts=check_initialization_order=1 %run %t 2>&1 | FileCheck %s
#include <stdio.h>
int foo() { return 1; }
int XXX = foo();
int main() {
printf("PASS\n");
// CHECK: PASS
}
|