diff options
Diffstat (limited to 'test/CXX/StaticConstructor.cpp')
-rw-r--r-- | test/CXX/StaticConstructor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CXX/StaticConstructor.cpp b/test/CXX/StaticConstructor.cpp index 56fcb97b..c184526e 100644 --- a/test/CXX/StaticConstructor.cpp +++ b/test/CXX/StaticConstructor.cpp @@ -20,7 +20,7 @@ public: Test t; int main() { - assert(t.getX()==22); + assert(t.getX() == 22); return 0; } |