Skip to content
Snippets Groups Projects
Forked from waLBerla / waLBerla
1172 commits behind the upstream repository.
TestStdVariant.cpp 98 B
#include <iostream>
#include <variant>

int main() {
   std::variant<int,float> a;
   return 0;
}