summaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/mangle-cxx2a.cpp
blob: 3e4689948a7a7e400e957ca6e30b536cd5e39436 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-linux-gnu -std=c++2a | FileCheck %s

namespace spaceship {
  struct X {};
  struct Y {};
  int operator<=>(X, Y);

  // CHECK-LABEL: define {{.*}} @_ZN9spaceship1fIiEEvDTcmltcvNS_1YE_EcvNS_1XE_EcvT__EE
  template<typename T> void f(decltype(Y() < X(), T()) x) {}
  template void f<int>(int);
}