diff options
Diffstat (limited to 'llvm/test/Regression/C++Frontend/2003-06-08-VirtualFunctions.cpp')
| -rw-r--r-- | llvm/test/Regression/C++Frontend/2003-06-08-VirtualFunctions.cpp | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/llvm/test/Regression/C++Frontend/2003-06-08-VirtualFunctions.cpp b/llvm/test/Regression/C++Frontend/2003-06-08-VirtualFunctions.cpp index ea32e196128..174e5144038 100644 --- a/llvm/test/Regression/C++Frontend/2003-06-08-VirtualFunctions.cpp +++ b/llvm/test/Regression/C++Frontend/2003-06-08-VirtualFunctions.cpp @@ -7,17 +7,10 @@ struct foo { }; struct bar : public foo { - //int x; bar(); int T() {} }; -//int bar::X() { return 0; } - -foo::foo() : y(4) { - -} - -bar::bar() { - -} +foo::foo() : y(4) { } +bar::bar() { } +int main() { return 0; } |

