xref: /llvm-project/cross-project-tests/debuginfo-tests/dexter-tests/hello.c (revision 45a40c163932d12b72b33bd1d8a84519392b5d39)
1 // REQUIRES: system-windows
2 //
3 // RUN: %clang_cl /Z7 /Zi %s -o %t
4 // RUN: %dexter --fail-lt 1.0 -w --binary %t --debugger 'dbgeng' -- %s
5 
6 #include <stdio.h>
main()7 int main() {
8   printf("hello world\n");
9   int x = 42;
10   __debugbreak(); // DexLabel('stop')
11 }
12 
13 // DexExpectWatchValue('x', 42, on_line=ref('stop'))
14