First, let's check we get a TemplateDecl, before complaining about where it might have been found. Second, if it came from an unexpected place, show where that location is. Reviewed By: ChuanqiXu Differential Revision: https://reviews.llvm.org/D116164
21 lines
835 B
C++
21 lines
835 B
C++
// This file contains references to sections of the Coroutines TS, which can be
|
|
// found at http://wg21.link/coroutines.
|
|
|
|
// RUN: %clang_cc1 -std=c++14 -fcoroutines-ts -verify %s -fcxx-exceptions -fexceptions -Wunused-result
|
|
|
|
namespace std {
|
|
namespace experimental {
|
|
template <typename... T>
|
|
struct coroutine_traits { // expected-note{{declared here}}
|
|
struct promise_type {};
|
|
};
|
|
|
|
template <> struct coroutine_traits<void>; // expected-note {{forward declaration of 'std::experimental::coroutine_traits<void>'}}
|
|
} // namespace experimental
|
|
} // namespace std
|
|
|
|
void uses_forward_declaration() {
|
|
co_return; // expected-error {{this function cannot be a coroutine: missing definition of specialization 'coroutine_traits<void>'}}
|
|
// expected-warning@-1 {{support for std::experimental::coroutine_traits will be removed}}
|
|
}
|