brintos

brintos / llvm-project-archived public Read only

0
0
Text · 914 B · eb798e5 Raw
15 lines · cpp
1// RUN: %clang_cc1 -std=c++20 -fsyntax-only -verify %s2 3constexpr Missing a = 0; // expected-error {{unknown type name 'Missing'}}4 5template < typename T, Missing b = a> // expected-error {{unknown type name 'Missing'}}6class Klass { // expected-note {{candidate template ignored: could not match 'Klass<T, b>' against 'int'}} \7                 expected-note {{implicit deduction guide declared as 'template <typename T, int b = <recovery-expr>()> Klass(Klass<T, b>) -> Klass<T, b>'}}8  Klass(T);   // expected-note {{candidate template ignored: substitution failure [with T = int, b = <recovery-expr>()]}} \9                 expected-note {{implicit deduction guide declared as 'template <typename T, int b = <recovery-expr>()> Klass(T) -> Klass<T, b>'}}10};11 12Klass foo{5}; // no-crash \13                 expected-error {{no viable constructor or deduction guide for deduction of template arguments of 'Klass'}}14 15