extent: add trivial validity instantiation test

This commit is contained in:
Danny Robson 2015-02-13 17:32:31 +11:00
parent b05b779d7d
commit 331f185160
2 changed files with 9 additions and 0 deletions

View File

@ -7,6 +7,7 @@ TEST_BIN = \
bitwise \
checksum \
colour \
extent \
fixed \
float \
hton \

8
test/extent.cpp Normal file
View File

@ -0,0 +1,8 @@
#include "extent.hpp"
#include "debug.hpp"
int
main (void)
{
debug::sanity (util::extent<float> {0, 0});
}