14 lines · c
1// REQUIRES: system-windows2//3// RUN: %clang_cl /Z7 /Zi %s -o %t4// RUN: %dexter --fail-lt 1.0 -w --binary %t --debugger 'dbgeng' -- %s5 6#include <stdio.h>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