mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-16 02:00:01 +00:00
10 lines
91 B
C++
10 lines
91 B
C++
#include "cpp.h"
|
|
|
|
int f() {
|
|
return 1;
|
|
}
|
|
|
|
class C {
|
|
static int f() { return 1; }
|
|
};
|