mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-15 09:00:24 -04:00
11 lines
176 B
C++
11 lines
176 B
C++
// RUN: %clang_cc1 %s -triple i386-unknown-unknown -emit-llvm -o - | FileCheck %s
|
|
|
|
struct A {
|
|
virtual int operator-() = 0;
|
|
};
|
|
|
|
void f(A *a) {
|
|
// CHECK: call i32 %
|
|
-*a;
|
|
}
|