blob: af217b67e37f9cb10de772f548f8af8b4a9de05a [file] [log] [blame]
constexpr int foo()
{
return 0;
}
int main(int argc, char**)
{
typeof(argc) ret = foo();
return ret;
}