[Github] Label lldb-dap PRs (#125139)
[llvm-project.git] / clang / test / CodeGenCoroutines / Inputs / utility.h
blob43c6d27823bd47621d5a79fc1a5c57ae4d1aa292
1 // This is a mock file for <utility>
3 namespace std {
5 template <typename T> struct remove_reference { using type = T; };
6 template <typename T> struct remove_reference<T &> { using type = T; };
7 template <typename T> struct remove_reference<T &&> { using type = T; };
9 template <typename T>
10 constexpr typename std::remove_reference<T>::type&& move(T &&t) noexcept {
11 return static_cast<typename std::remove_reference<T>::type &&>(t);