Skip to content

Commit 56dd56a

Browse files
committed
Add test for R #2863
1 parent 45fb3cc commit 56dd56a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

S02-literals/adverbs.t

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use v6;
22
use Test;
33

4-
plan 34;
4+
plan 35;
55

66
# L<S02/Adverbial Pair forms>
77

@@ -76,3 +76,10 @@ plan 34;
7676
(dd => 99999999999999999999999),
7777
"Large numeric adverbs don't error out, and also give the correct value";
7878
} # 34
79+
80+
# GH #2863
81+
{
82+
is {:a<A> :b<B>, :c<C>},
83+
{a => "A", b => "B", c => "C"},
84+
"lack of comma does not cause LTA error"
85+
}

0 commit comments

Comments
 (0)