brintos

brintos / llvm-project-archived public Read only

0
0
Text · 214 B · 6b64522 Raw
6 lines · cpp
1// RUN: %clang_cc1 -x c++ -fsyntax-only %s -verify2 3static union {     // expected-warning {{declaration does not declare anything}}4  virtual int a(); // expected-error {{unions cannot have virtual functions}}5};6