Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaCXX / invalid-deduction-guide-as-template-candidates.cpp
blobe9b362d67cd23932a6c1bbbe8652e90d0ba6eb59
1 // RUN: %clang_cc1 -std=c++17 -fsyntax-only -verify %s
3 template <class T> class Foo {}; // expected-note {{candidate template ignored: couldn't infer template argument 'T'}} \
4 // expected-note {{candidate function template not viable: requires 1 argument, but 0 were provided}}
5 Foo(); // expected-error {{deduction guide declaration without trailing return type}}
6 Foo vs; // expected-error {{no viable constructor or deduction guide for deduction of template arguments of 'Foo'}}