aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Frontend/diagnostic-pipe.c
blob: 61dbdcfb2e0e7c6256c0b505a2862af76cc1ac10 (plain)
1
2
3
4
5
6
7
8
9

_Static_assert(0, "");

/// Test that piping the output into another process disables syntax
/// highlighting of code snippets.

// RUN: not %clang_cc1 %s -o /dev/null 2>&1 | FileCheck %s
// CHECK: error: static assertion failed:
// CHECK-NEXT: {{^}}   2 | _Static_assert(0, "");{{$}}