diff options
Diffstat (limited to 'tests/test_cases/cflags/public/test_use_half3.cpp')
-rw-r--r-- | tests/test_cases/cflags/public/test_use_half3.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test_cases/cflags/public/test_use_half3.cpp b/tests/test_cases/cflags/public/test_use_half3.cpp new file mode 100644 index 0000000..1cf50ad --- /dev/null +++ b/tests/test_cases/cflags/public/test_use_half3.cpp @@ -0,0 +1,6 @@ +#include "half3/half3.hpp" + +int main() { + auto result = half3(); + return result > 1 and result < 2 ? 0 : 1; +} |