diff options
Diffstat (limited to 'tests/float-to-uint64.c')
-rw-r--r-- | tests/float-to-uint64.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/float-to-uint64.c b/tests/float-to-uint64.c new file mode 100644 index 0000000..10e7809 --- /dev/null +++ b/tests/float-to-uint64.c @@ -0,0 +1,4 @@ +float g(void); +unsigned long long f(void) { + return g(); +} |