Add signal with pointer compilation/linking test

This commit is contained in:
Danny Robson 2011-07-03 16:04:49 +10:00
parent 6e85e3c97b
commit 6ba7a532f7

View File

@ -40,6 +40,13 @@ test_double (void) {
}
void
test_linking_pointers (void) {
signal<void, const char*> ptr_signal;
ptr_signal (NULL);
}
int
main (int, char **) {
test_null ();