About
Contact
QtCreator
KDevelop
Solarized
1
// RUN: %clang_cl_asan %Od %s %Fe%t
2
// RUN: %run %t | FileCheck %s
3
4
#include
<stdio.h>
5
6
int
main
() {
7
printf
(
format:
"Hello, world!\n"
);
8
// CHECK: Hello, world!
9
}
10