brintos

brintos / llvm-project-archived public Read only

0
0
Text · 226 B · 12c35c2 Raw
13 lines · cpp
1// RUN: %clangxx -g %s -o %t && %run %t | FileCheck %s2// CHECK: bc3 4#include <assert.h>5#include <stdio.h>6 7int main(void) {8  assert(putc_unlocked('b', stdout) != EOF);9  assert(putchar_unlocked('c') != EOF);10 11  return 0;12}13