Files
compiler-explorer/test/ast/bug-3849b.cpp

22 lines
199 B
C++

/*
#include "hell.hpp"
#pragma once
char Bar(auto ) {
return {};
}
void f();
*/
int main() {
char c = Bar([]{});
return c;
}
#include <ctime>
clock_t myClock() {
return clock();
}