mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
18 lines
367 B
C++
18 lines
367 B
C++
|
// { dg-do preprocess { target c++11 } }
|
||
|
// { dg-options "-fchar8_t" }
|
||
|
|
||
|
#include <atomic>
|
||
|
#include <filesystem>
|
||
|
#include <istream>
|
||
|
#include <limits>
|
||
|
#include <locale>
|
||
|
#include <ostream>
|
||
|
#include <string>
|
||
|
#include <string_view>
|
||
|
|
||
|
#ifndef __cpp_lib_char8_t
|
||
|
# error "__cpp_lib_char8_t"
|
||
|
#elif __cpp_lib_char8_t != 201811L
|
||
|
# error "__cpp_lib_char8_t != 201811L"
|
||
|
#endif
|