[perl #123789] [BUG] Segmentation fault when calling a routine having a native parameter with a type object argument in Rakudo

2015-02-10 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #123789] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=123789 > m: sub foo(int:U $x) { $x }; rakudo-moar f53a94: ( no output ) m: sub foo(int:U $x) {

[perl #123777] [BUG] List assignment in a BEGIN block causes a crash at runtime

2015-02-10 Thread via RT
# New Ticket Created by # Please include the string: [perl #123777] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=123777 > r: my @a; BEGIN { @a = 1; }; say @a; rakudo-moar 0cb22e: OUTPUT«This type does not support elems␤ in

[perl #123776] [BUG] Binding a variable at BEGIN time doesn't stick aruond for runtime

2015-02-10 Thread via RT
# New Ticket Created by # Please include the string: [perl #123776] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=123776 > m: my $a; BEGIN { $a := 1; say $a; }; say $a; rakudo-{parrot,moar} 0cb22e: OUTPUT«1␤(Any)␤» m: my $a

[perl6/specs] 72242e: Fix example for $s.tap, mentioned in #77

2015-02-10 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 72242eb997c6e2b5436d980eb5e0b9e2c3e07223 https://github.com/perl6/specs/commit/72242eb997c6e2b5436d980eb5e0b9e2c3e07223 Author: Moritz Lenz Date: 2015-02-10 (Tue, 10 Feb 2015) Changed paths: M S17-co

[perl #122221] Stubbing a parent class breaks instantiating its child from within the parent definition

2015-02-10 Thread Christian Bartolomaeus via RT
Rakudo now dies with a typed exception X::Inheritance::NotComposed when trying to inherit from a stubbed class -- cmp. ticket 81060 (https://rt.perl.org/Ticket/Display.html?id=81060). I don't merge both tickets since that would make things rather confusing IMHO. On the basis of Moritz's comment

[perl #81060] [BUG] LTA error messages when a class inherits from a stubbed class in Rakudo

2015-02-10 Thread Christian Bartolomaeus via RT
This looks right now: $ perl6 -e 'class A { ... }; say A.WHAT' # X::Package::Stubbed ===SORRY!=== Error while compiling -e The following packages were stubbed but not defined: A at -e:1 --> class A { ... }; say A.WHAT⏏ expecting any of: postfix statement end s