mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2026-05-16 17:13:59 -04:00
10 lines
100 B
C++
10 lines
100 B
C++
void f();
|
|
|
|
char Bar(auto ) {
|
|
return {};
|
|
}
|
|
|
|
int main() {
|
|
char c = Bar([]{});
|
|
return c;
|
|
} |