This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Retract #10324 and #10333; not needed.
[perl5.git] / t / op / my_stash.t
... / ...
CommitLineData
1#!./perl
2
3package Foo;
4
5BEGIN {
6 @INC = '../lib';
7}
8
9use Test;
10
11plan tests => 7;
12
13use constant MyClass => 'Foo::Bar::Biz::Baz';
14
15{
16 package Foo::Bar::Biz::Baz;
17 1;
18}
19
20for (qw(Foo Foo:: MyClass __PACKAGE__)) {
21 eval "sub { my $_ \$obj = shift; }";
22 ok ! $@;
23# print $@ if $@;
24}
25
26use constant NoClass => 'Nope::Foo::Bar::Biz::Baz';
27
28for (qw(Nope Nope:: NoClass)) {
29 eval "sub { my $_ \$obj = shift; }";
30 ok $@;
31# print $@ if $@;
32}