Lines Matching defs:auto
44 auto v = a;
58 friend auto operator<=>(C, C) = default;
70 friend auto operator<=>(CDependent, CDependent) = default;
185 UnaryC auto [a, b] = get_S();
186 // since-cxx20-error@-1 {{decomposition declaration cannot be declared with constrained 'auto'}}
187 BinaryC<int> auto [c, d] = get_S();
188 // since-cxx20-error@-1 {{decomposition declaration cannot be declared with constrained 'auto'}}
193 UnaryC auto [a, b] = get_T<T>();
194 // since-cxx20-error@-1 {{decomposition declaration cannot be declared with constrained 'auto'}}
195 BinaryC<T> auto [c, d] = get_T<T>();
196 // since-cxx20-error@-1 {{decomposition declaration cannot be declared with constrained 'auto'}}
230 auto z = [a = 42](int a) {
254 struct Test { void f(this const auto& = Test{}); };
256 auto L = [](this const auto& = Test{}){};