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, force_build => 1;
struct Foo {
  int inum;
  double dnum;
  char *str;
};
/*typedef struct Foo Foo;*/
void suppress_warnings() {}
END

run_struct_tests();

done_testing;