File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -45,8 +45,8 @@ plan 23;
45
45
ok $ obj . Stringy ~~ Stringy , ' .Stringy returns a Stringy (Any)' ;
46
46
ok $ int . Stringy ~~ Stringy , ' .Stringy returns a Stringy (Int)' ;
47
47
48
- is $ obj . gist , ' Any( )' , ' .gist on type object gives Any( )' ;
49
- is $ int . gist , ' Int( )' , ' .gist on type object gives Int( )' ;
48
+ is $ obj . gist , ' (Any )' , ' .gist on type object gives (Any )' ;
49
+ is $ int . gist , ' (Int )' , ' .gist on type object gives (Int )' ;
50
50
51
51
is ' a' ~ $ obj , ' a' , ' infix:<~> uses coercion to Stringy (Any)' ;
52
52
is ' a' ~ $ int , ' a' , ' infix:<~> uses coercion to Stringy (Int)' ;
Original file line number Diff line number Diff line change 6
6
# RT #115134: [BUG] BEGIN { eval "..." } Confuses Rakudo
7
7
# The bug is triggered by the closing brace being directly
8
8
# followed by a newline and the next statement.
9
- # ?rakudo todo 'RT #115134'
10
9
eval_lives_ok(q [ BEGIN { eval '0' }
11
10
0 ] , ' eval in BEGIN { ... } followed by newline works' );
12
11
Original file line number Diff line number Diff line change 5
5
6
6
is Any . Str , ' ' , ' Any.Str is empty string' ;
7
7
is Any . Stringy , ' ' , ' Any.Str is empty string' ;
8
- is Any . gist , ' Any( )' , ' Any.gist has those parens' ;
8
+ is Any . gist , ' (Any )' , ' Any.gist has those parens' ;
9
9
10
10
# maybe a bit too retrictive?
11
11
is Any . perl , ' Any' , ' Any.perl does not have parens' ;
You can’t perform that action at this time.
0 commit comments