blob: 1f1472a0ebac1eadebb0fb5d16ad922b2a4ae471 [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm %s -o - -triple i386-pc-windows-msvc19.16.0 | FileCheck %s
// REQUIRES: asserts, x86-registered-target
// CHECK: call void @"?dc@z@@SAXU1@@Z"
struct z {
static void dc(z);
void (*p)(z);
};
void f() {
z::dc({});
}