mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 00:40:33 -05:00
12 lines
211 B
C++
12 lines
211 B
C++
// RUN: %clang_cc1 -emit-llvm-only -verify %s
|
|
|
|
struct A { int a(); };
|
|
typedef int B;
|
|
void a() {
|
|
A x;
|
|
((x.a))();
|
|
((x.*&A::a))();
|
|
B y;
|
|
// FIXME: Sema doesn't like this for some reason...
|
|
//(y.~B)();
|
|
}
|