[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenCXX / mangle-cxx2a.cpp
blob3e4689948a7a7e400e957ca6e30b536cd5e39436
1 // RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-linux-gnu -std=c++2a | FileCheck %s
3 namespace spaceship {
4 struct X {};
5 struct Y {};
6 int operator<=>(X, Y);
8 // CHECK-LABEL: define {{.*}} @_ZN9spaceship1fIiEEvDTcmltcvNS_1YE_EcvNS_1XE_EcvT__EE
9 template<typename T> void f(decltype(Y() < X(), T()) x) {}
10 template void f<int>(int);