Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
212 B
C++
Raw Permalink Normal View History

class PrintfContainer {
public:
int printf() {
return 0;
}
};
int main() {
PrintfContainer().printf(); //% self.expect("expression -- printf(\"Hello\\n\")", substrs = ['6'])
return 0;
}