Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added tests for #102416
  • Loading branch information
lizmat committed Oct 28, 2013
1 parent 92e4192 commit 3e12598
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion S02-types/native.t
@@ -1,7 +1,7 @@
use v6;
use Test;

plan 25;
plan 27;

{
my int $x;
Expand Down Expand Up @@ -92,4 +92,15 @@ plan 25;
is $y, NaN, '#101450';
}

# RT #102416
#?niecza skip 'Malformed my'
#?rakudo skip 'RT 102416'
{
my int $x;
($x) = (5);
is $x, 5, 'did we assign $x';
#pugs todo 'no native support'
is $x.WHAT, int, 'is it really a native';
}

# vim: ft=perl6

0 comments on commit 3e12598

Please sign in to comment.