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()7int 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