7 lines · cpp
1// RUN: not %clang_cc1 %s -fmessage-length=50 -fcolor-diagnostics -fno-show-source-location -o - 2>&1 | FileCheck %s2 3struct F {4 float a : 10;5};6// CHECK: bit-field 'a' has non-integral type 'float'7 1// RUN: not %clang_cc1 %s -fmessage-length=50 -fcolor-diagnostics -fno-show-source-location -o - 2>&1 | FileCheck %s2 3struct F {4 float a : 10;5};6// CHECK: bit-field 'a' has non-integral type 'float'7