From 74c1ac33a978fe07bc8a2f23e4444015a87e3605 Mon Sep 17 00:00:00 2001 From: Vighnesh Date: Fri, 11 Oct 2024 13:53:08 -0700 Subject: [PATCH] nit - insert new lines --- tests/.#TypeVar.test.cpp | 1 + tests/TypeVar.test.cpp | 3 +++ 2 files changed, 4 insertions(+) create mode 120000 tests/.#TypeVar.test.cpp diff --git a/tests/.#TypeVar.test.cpp b/tests/.#TypeVar.test.cpp new file mode 120000 index 00000000..dded176f --- /dev/null +++ b/tests/.#TypeVar.test.cpp @@ -0,0 +1 @@ +vvijay@HQ-VHWFGJQN04.96773 \ No newline at end of file diff --git a/tests/TypeVar.test.cpp b/tests/TypeVar.test.cpp index 9210c098..57ec1367 100644 --- a/tests/TypeVar.test.cpp +++ b/tests/TypeVar.test.cpp @@ -465,14 +465,17 @@ TEST_CASE("proof_that_isBoolean_uses_all_of") TEST_CASE("content_reassignment") { + #pragma GCC diagnostic push #if !defined(__has_warning) || __has_warning("-Wmaybe-uninitialized") #pragma GCC diagnostic ignored "-Wmaybe-uninitialized" #endif + Type myAny{AnyType{}, /*presistent*/ true}; myAny.documentationSymbol = "@global/any"; #pragma GCC diagnostic pop + TypeArena arena; TypeId futureAny = arena.addType(FreeType{TypeLevel{}});