Files
2018-08-02 17:53:23 +01:00

11 lines
189 B
C++

struct Four {
operator int() {
return 4;
}
};
int main() {
Four four;
return four; // There is a call to operator int() here. [ITS LOCATION SHOULD BE THE ENTIRE WORD 'four']
}