mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 12:54:00 -05:00
10 lines
100 B
C++
10 lines
100 B
C++
void f();
|
|
|
|
char Bar(auto ) {
|
|
return {};
|
|
}
|
|
|
|
int main() {
|
|
char c = Bar([]{});
|
|
return c;
|
|
} |