The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# This file exists to test closure prototypes with no CvOUTSIDE.  Only
# by putting this in a separate file can we get a sub (this file’s
# main CV) with no CvOUTSIDE.  When the outer sub is freed, the inner
# subs also get CvOUTSIDE set to null.

	my $x;
	$closure_test::s2 = sub {
	    $x;
	    sub { $x; '10 cubes' };
	};