Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenCXX / PR37481.cpp
blobfba2ffdc8488f5d87ca98d815c33cadb74913fd6
1 // RUN: %clang_cc1 -o /dev/null -emit-llvm -std=c++17 -triple x86_64-pc-windows-msvc %s
3 struct Foo {
4 virtual void f();
5 virtual void g();
6 };
8 void Foo::f() {}
9 void Foo::g() {}
11 template <void (Foo::*)()>
12 void h() {}
14 void x() {
15 h<&Foo::f>();
16 h<&Foo::g>();