From 75b10758ba116eabed730d23e957f1d69a1e3cb8 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Tue, 6 Aug 2024 00:34:57 +0200 Subject: Type traits --- asl/meta/refs_tests.cpp | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 asl/meta/refs_tests.cpp (limited to 'asl/meta/refs_tests.cpp') diff --git a/asl/meta/refs_tests.cpp b/asl/meta/refs_tests.cpp deleted file mode 100644 index 49d4f23..0000000 --- a/asl/meta/refs_tests.cpp +++ /dev/null @@ -1,33 +0,0 @@ -#include "asl/meta/refs.hpp" -#include "asl/meta/types.hpp" - -using namespace asl; - -static_assert(referenceable); -static_assert(referenceable); -static_assert(referenceable); -static_assert(!referenceable); -static_assert(referenceable); -static_assert(referenceable); -static_assert(referenceable); -static_assert(!referenceable); -static_assert(!referenceable); -static_assert(!referenceable); - -static_assert(!is_ref); -static_assert(!is_rref); -static_assert(!is_any_ref); - -static_assert(is_ref); -static_assert(!is_rref); -static_assert(is_any_ref); - -static_assert(!is_ref); -static_assert(is_rref); -static_assert(is_any_ref); - -static_assert(!is_any_ref); -static_assert(!is_any_ref); -static_assert(!is_any_ref); - -int main() { return 0; } -- cgit