From 3760a38b7e37c23a944d2c4fdec9028ae5ebde3a Mon Sep 17 00:00:00 2001
From: Niels Lohmann <mail@nlohmann.me>
Date: Sat, 21 Jul 2018 11:47:05 +0200
Subject: [PATCH] :checkered_flag: implicit conversion is not allowed with MSVC

---
 test/src/unit-conversions.cpp | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/test/src/unit-conversions.cpp b/test/src/unit-conversions.cpp
index 5259acbb..787897ca 100644
--- a/test/src/unit-conversions.cpp
+++ b/test/src/unit-conversions.cpp
@@ -433,15 +433,6 @@ TEST_CASE("value conversion")
 #endif
     }
 
-    SECTION("get null (implicit)")
-    {
-        std::nullptr_t n;
-        json j(n);
-
-        std::nullptr_t n2 = (std::nullptr_t)j;
-        CHECK(n2 == n);
-    }
-
     SECTION("get null (explicit)")
     {
         std::nullptr_t n;