File: typename6.C

package info (click to toggle)
gcc-arm-none-eabi 15%3A14.2.rel1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,099,328 kB
  • sloc: cpp: 3,627,108; ansic: 2,571,498; ada: 834,230; f90: 235,082; makefile: 79,231; asm: 74,984; xml: 51,692; exp: 39,736; sh: 33,298; objc: 15,629; python: 15,069; fortran: 14,429; pascal: 7,003; awk: 5,070; perl: 3,106; ml: 285; lisp: 253; lex: 204; haskell: 135
file content (129 lines) | stat: -rw-r--r-- 2,402 bytes parent folder | download | duplicates (2)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// P0634R3
// { dg-do compile { target c++20 } }

// (5.2.1) simple-declaration or a function-definition in namespace scope

template<typename T>
T::X fn1 (int);

template<typename T>
T::X fn1 (int)
{
  return 42;
}

template<typename T>
T::X v1;

namespace N {
  template<typename T>
  T::X v2;
}

// (5.2.2) member-declaration

template<typename T>
struct S {
  [[noreturn]] T::X fn2 ();
  T::X fn3 ();
  T::X fn4 () { return 5; }
  T::X fn5 () final;
  T::X fn6 () = 0;
  T::X fn8 () override;
  T::X v3;
  T::X *v4;
  T::X v5[5];
  T::X v6 = 0;
  T::X v7{0};
  T::X v8 : 16;
  static constexpr T::X v9 = 0;
  typedef T::X T2;
  friend T::X fn7<int> ();
  static inline T::X v10;
};

// (5.2.3) parameter-declaration in a member-declaration,
// unless that parameter-declaration appears in a default argument

template<typename T>
struct S2 {
  friend int fn1<T::X> ();
  int fn2 (T::X p);
  int fn5 (int = T::X);
};

// (5.2.4) parameter-declaration in a declarator of a function or function
// template declaration whose declarator-id is qualified,
// unless that parameter-declaration appears in a default argument

struct M {
  template<typename T>
  int fn (T::X);
};

template<typename T>
int M::fn (T::X p) { return p; }

// (5.2.5) parameter-declaration in a lambda-declarator,
// unless that parameter-declaration appears in a default argument

void
fn5 ()
{
  auto j = []<typename T>(T::X t, int i) { return i; };
}

// (5.2.6) parameter-declaration of a (non-type) template-parameter

template<typename T, T::X N>
struct S3 { };

// default argument of a type-parameter of a template
template<typename T, typename U = T::X>
struct S4 { };

// type-id of a static_cast, const_cast, reinterpret_cast, or dynamic_cast
template<typename T>
struct S5 {
  void fn6 (T::X p)
  {
    int i = static_cast<T::Y>(p);
    i = dynamic_cast<T::Y>(p);
    i = reinterpret_cast<T::Y>(p);
    i = const_cast<T::Y>(p);
  }
};

template<typename T>
void fn7 (typename T::X p)
{
  int i = static_cast<T::Y>(p);
  i = dynamic_cast<T::Y>(p);
  i = reinterpret_cast<T::Y>(p);
  i = const_cast<T::Y>(p);
}

// new-type-id
template<typename T>
void
fn8 ()
{
  new T::X[10];
}

// defining-type-id

template<typename T>
struct W { typedef int M; };

template<typename T>
struct S6 {
  using TT = T::X;
  using TT2 = W<T>::M;
};

// trailing-return-type
template<typename T>
struct S7 {
  auto fn9() -> W<T>::M;
};