Skip to content

Commit

Permalink
[TODO FUDGE] Unspace with sigiless terms
Browse files Browse the repository at this point in the history
RT#128462

Unspace with method calls on sigiless terms must compile and work.
  • Loading branch information
zoffixznet committed Jul 12, 2016
1 parent 8551d3a commit 44fc047
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion S02-lexical-conventions/unspace.t
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use MONKEY-TYPING;

use Test;

plan 87;
plan 88;

# L<S02/"Unspaces"/This is known as the "unspace">

Expand Down Expand Up @@ -319,4 +319,9 @@ is "foo"\ \ .perl, "foo".perl, 'two unspace in a row before . for method call';
# \# okay within a regex
ok '#' ~~ /\#/, 'Unspace restriction in regex does not apply to \#';
# RT #128462
#?rakudo todo 'RT 128462'
eval-lives-ok 'my \term = 42; say term\ .Str; term == 42 or die;',
'unspace with method calls detached from sigiless terms works';
# vim: ft=perl6

0 comments on commit 44fc047

Please sign in to comment.