mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
10 lines
147 B
C++
10 lines
147 B
C++
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
|
|
|
|
struct A {
|
|
virtual int operator-() = 0;
|
|
};
|
|
|
|
void f(A *a) {
|
|
// CHECK: call i32 %
|
|
-*a;
|
|
}
|