The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test::More;
require 't/common.pl';

use Inline C => <<'END', STRUCTS => 1;
typedef struct {
    int inum;
    double dnum;
    char *str;
} Foo;
void suppress_warnings() {}
END

run_struct_tests();

done_testing;