Modernes C++ programmieren

Okt 20, 2024

lst-0024-godb.cpp

//#(compile) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// https://godbolt.org/z/58cTfvYhe 
int two() { return 2; }       // (ERR) once with int as return type…
double two() { return 2.0; }  // (ERR)  and once with double
int main() {
    int x = two();
    double y = two();
}