mirror of
https://github.com/libSDL2pp/libSDL2pp.git
synced 2025-08-04 11:25:58 -04:00
9 lines
125 B
C++
9 lines
125 B
C++
#include <experimental/optional>
|
|
#include <string>
|
|
|
|
int main() {
|
|
std::experimental::optional<std::string> o;
|
|
|
|
return !o;
|
|
}
|