llvm-project/lldb/packages/Python/lldbsuite/test/lang/cpp/printf/main.cpp

22 lines
554 B
C++

//===-- main.cpp ------------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
class PrintfContainer {
public:
int printf() {
return 0;
}
};
int main() {
PrintfContainer().printf(); //% self.expect("expression -- printf(\"Hello\\n\")", substrs = ['6'])
return 0;
}