13 lines · cpp
1// RUN: %clang_cc1 -emit-llvm %s -o - -triple i386-pc-windows-msvc19.16.0 | FileCheck %s2// REQUIRES: asserts, x86-registered-target3 4// CHECK: call void @"?dc@z@@SAXU1@@Z"5struct z {6 static void dc(z);7 void (*p)(z);8};9 10void f() {11 z::dc({});12}13