Content deleted Content added
mNo edit summary |
No edit summary |
||
Line 37:
template <typename T>
struct
// Types "yes" and "no" are guaranteed to have different sizes,
// specifically sizeof(yes) == 1 and sizeof(no) == 2.
Line 55:
};
struct
typedef float foobar;
};
Line 61:
int main() {
std::cout << std::boolalpha;
std::cout <<
std::cout <<
return 0;
}
Line 75:
#include <iostream>
#include <type_traits>
template <typename T, typename = void>
struct
template <typename T>
struct
struct
using foobar = float;
};
Line 91 ⟶ 88:
int main() {
std::cout << std::boolalpha;
std::cout <<
std::cout <<
return 0;
}
Line 103 ⟶ 100:
template <typename T>
using
struct
using foobar = float;
};
Line 111 ⟶ 108:
int main() {
std::cout << std::boolalpha;
std::cout << std::is_detected<
std::cout << std::is_detected<
return 0;
}
|