summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/noexcept-type5.C
blob: 6c1ebd1f13e6f24c1084d7071ed56e09a5dc975d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Test for composite pointer type.
// { dg-options -std=c++17 }

typedef void (*P)();
typedef void (*NP)() noexcept;

void f();
void g() noexcept;

bool b;

template <class T, class U> struct Same;
template <class T> struct Same<T,T> { };

Same<decltype(b ? &f : &g),P> s;

int main()
{
  P p = 0;
  NP np = 0;

  p == np;
  p != np;
  p < np;
}