my $expected_version = "1.33";
print("import: constant\n");
use constant;

if (defined constant->VERSION) {
	my $given_version = constant->VERSION;
	$given_version =~ s/0+$//;
	die('Expected version ' . $expected_version . ' but found ' . $given_version) unless ($expected_version eq $given_version);
	print('	using version ' . constant->VERSION . '
');

}
