6 lines
56 B
C++
6 lines
56 B
C++
int foo() {
|
|
return 0;
|
|
}
|
|
|
|
const static int x = foo();
|
int foo() {
|
|
return 0;
|
|
}
|
|
|
|
const static int x = foo();
|