test.cpp 410 B

1234567891011121314151617181920212223242526272829
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Test file
  4. //
  5. //////////////////////////////////////////////////////////////////////////////
  6. class Foo {
  7. private:
  8. int m_value;
  9. public:
  10. Foo(int value) :
  11. m_value(value)
  12. {
  13. }
  14. int Twice()
  15. {
  16. int y = m_value * m_value;
  17. return y;
  18. }
  19. };
  20. int main()
  21. {
  22. return Foo(3).Twice();
  23. }