brintos

brintos / llvm-project-archived public Read only

0
0
Text · 191 B · b7cf266 Raw
9 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3union U {4  int d;5  virtual int f() { return d; }; // expected-error {{unions cannot have virtual functions}}6};7 8int foo() { U u; return u.d; }9