Browse Source

CppLanguageServer: Fix syntax of a test case program

Itamar 4 years ago
parent
commit
35d28b29b3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Userland/DevTools/HackStudio/LanguageServers/Cpp/Tests.cpp

+ 1 - 1
Userland/DevTools/HackStudio/LanguageServers/Cpp/Tests.cpp

@@ -97,7 +97,7 @@ void test_complete_type()
     String content = R"(
 struct MyStruct {
 int x;
-}
+};
 void foo(){
 MyS
 }