mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 12:54:00 -05:00
22 lines
199 B
C++
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();
|
|
} |