llvm-project/lldb/test/API/lang/cpp/printf/main.cpp

13 lines
212 B
C++

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