<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0">
  <channel>
  <title>perl.perl6.compiler Google Group</title>
  <link>http://groups.google.com/group/perl.perl6.compiler</link>
  <description>perl6-compiler@perl.org (Moderated)</description>
  <language>en</language>
  <item>
  <title>[perl #118519] ▁ ▂ ▃ ▄ ▅ &quot;▆ ▇ █␤, alas no&quot;</title>
  <link>http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/6f758d82def45107/0cf582b281abae76?show_docid=0cf582b281abae76</link>
  <description>
  23:45:53] &amp;lt;TimToady&amp;gt;	nr: say &#39;▁&#39; ... &#39;█&#39; &lt;br&gt; [23:46:07] &amp;lt;+camelia&amp;gt;	rakudo b2072f: OUTPUT«(timeout)» &lt;br&gt; [23:46:07] &amp;lt;+camelia&amp;gt;	..niecza v24-77-g2b14288: OUTPUT«▁ ▂ ▃ ▄ ▅ ▆ ▇ █␤» &lt;br&gt; [23:46:17] &amp;lt;TimToady&amp;gt;	rakudobug &lt;br&gt; [23:46:36] lizmat	submits rakudobug
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/6f758d82def45107</guid>
  <author>
  perl6-bugs-follo...@perl.org
  (Elizabeth Mattijsen)
  </author>
  <pubDate>Mon, 17 Jun 2013 21:47:46 UT
</pubDate>
  </item>
  <item>
  <title>[perl #118505] Null PMC access when declaring constant for export twice</title>
  <link>http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/61d737248c70d1ad/9577927d9637bdc0?show_docid=9577927d9637bdc0</link>
  <description>
  5 =&amp;gt; 5 &lt;br&gt; Null PMC access in get_string() &lt;br&gt; &lt;p&gt;On a related note, it&#39;s possible to re-declare constants. Not sure if &lt;br&gt; that&#39;s a bug or not. &lt;br&gt; 1 =&amp;gt; 1 &lt;br&gt; 1 =&amp;gt; 2
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/61d737248c70d1ad</guid>
  <author>
  perl6-bugs-follo...@perl.org
  (Dagur)
  </author>
  <pubDate>Sun, 16 Jun 2013 13:48:06 UT
</pubDate>
  </item>
  <item>
  <title>[perl #118501] say EXPORT::ALL causes Null PMC access</title>
  <link>http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/c7be41136bbc90c3/30ba5439251d6c6d?show_docid=30ba5439251d6c6d</link>
  <description>
  $ perl6 &lt;br&gt; sub a() { ... } &lt;br&gt; Error while compiling block (source text: &amp;quot;say EXPORT::ALL\n&amp;quot;): Error &lt;br&gt; while compiling op call: Error while compiling block : Error while &lt;br&gt; compiling op call (source text: &amp;quot;say EXPORT::ALL\n&amp;quot;): Null PMC access in &lt;br&gt; find_method(&#39;handle&#39;) &lt;br&gt; &lt;p&gt;$ perl6 --version &lt;br&gt; This is perl6 version 2013.05-251-gd3ae978 built on parrot 5.2.0 revision
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/c7be41136bbc90c3</guid>
  <author>
  perl6-bugs-follo...@perl.org
  (Dagur)
  </author>
  <pubDate>Sun, 16 Jun 2013 11:12:06 UT
</pubDate>
  </item>
  <item>
  <title>[perl #118479] Untyped hashes are considered to be {Str}, but act differently from hashes typed with {Str}</title>
  <link>http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/0f471f6daf903ae3/87596030233cba2a?show_docid=87596030233cba2a</link>
  <description>
  &amp;lt;lizmat&amp;gt;	r: class A {}; my %h=A.new =&amp;gt; 1; say %h; my %h2{Str}=A.new =&amp;gt; 1; say %h2 # feels to me either both should fail, or both should work &lt;br&gt; [14:25:12] &amp;lt;+camelia&amp;gt;	rakudo b2072f: OUTPUT«(&amp;quot;A&amp;lt;-465252350&amp;gt;&amp;quot; =&amp;gt; 1).hash␤Nominal type check failed for parameter &#39;key&#39;; expected Str but got A instead␤ in method STORE_AT_KEY at src/gen/CORE.setting:7122␤ in method STORE at src/gen/CORE.setting:7018␤ in block at /tmp/Au8hPaHP4v:1␤␤»
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/0f471f6daf903ae3</guid>
  <author>
  perl6-bugs-follo...@perl.org
  (Elizabeth Mattijsen)
  </author>
  <pubDate>Fri, 14 Jun 2013 12:39:02 UT
</pubDate>
  </item>
  <item>
  <title>[perl #118467] [BUG] Required named occurring before slurpy wrongly considered a multi candidate in Rakduo</title>
  <link>http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/246979a1652a9c36/a17c7e2dccde527e?show_docid=a17c7e2dccde527e</link>
  <description>
  &amp;lt;masak&amp;gt; rn: multi foo(:$d!, *@f) {}; multi foo(*@f) { say &amp;quot;works&amp;quot; }; foo() #OK &lt;br&gt; &amp;lt;camelia&amp;gt; rakudo b2072f, niecza v24-75-g480a062: OUTPUT«works␤» &lt;br&gt; &amp;lt;masak&amp;gt; rn: multi foo(*@f, :$d!) {}; multi foo(*@f) { say &amp;quot;works&amp;quot; }; foo() #OK &lt;br&gt; &amp;lt;camelia&amp;gt; niecza v24-75-g480a062: OUTPUT«works␤» &lt;br&gt; &amp;lt;camelia&amp;gt; ..rakudo b2072f: OUTPUT«Ambiguous call to &#39;foo&#39;; these
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/246979a1652a9c36</guid>
  <author>
  perl6-bugs-follo...@perl.org
  (&quot;Carl Mäsak&quot;)
  </author>
  <pubDate>Thu, 13 Jun 2013 11:27:49 UT
</pubDate>
  </item>
  <item>
  <title>[perl #118453] [BUG] Reassigning to matched-against string and then accessing submatches can lead to substr errors because of binding against the scalar container in Rakudo</title>
  <link>http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/fd39490fbe394107/e4c77dd28aef712c?show_docid=e4c77dd28aef712c</link>
  <description>
  &amp;lt;masak&amp;gt; ok, this is a fun one: &lt;br&gt; &amp;lt;masak&amp;gt; rn: my $s = &#39;pre x post&#39;; $s ~~ /^ (&amp;lt;-[x]&amp;gt;+) &#39;x&#39; (\N+) $/; $s = &lt;br&gt; ~$0; say ~$1 &lt;br&gt; &amp;lt;camelia&amp;gt; niecza v24-75-g480a062: OUTPUT« post␤» &lt;br&gt; &amp;lt;camelia&amp;gt; ..rakudo b2072f: OUTPUT«Start of substr out of range. Is: 5, &lt;br&gt; should be in 0..4 [...] &lt;br&gt; &amp;lt;masak&amp;gt; I&#39;m entirely with Niecza here.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/fd39490fbe394107</guid>
  <author>
  perl6-bugs-follo...@perl.org
  (&quot;Carl Mäsak&quot;)
  </author>
  <pubDate>Wed, 12 Jun 2013 18:00:24 UT
</pubDate>
  </item>
  <item>
  <title>[perl #118407] Importing sub using require causes Null PMC access</title>
  <link>http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/7cfc6618d893e5a7/43b5fc9510772702?show_docid=43b5fc9510772702</link>
  <description>
  sub abc() is export { say &amp;quot;hello&amp;quot; } &lt;br&gt; &lt;p&gt;This works (given that it&#39;s NYI) &lt;br&gt; abc(); &lt;br&gt; Trying to import symbols &amp;amp;abc from &#39;/tmp/a.pm6&#39;, but it does not export &lt;br&gt; anything &lt;br&gt; &lt;p&gt;Without the ampersand however, &lt;br&gt; Error while compiling block (source text: &amp;quot;require(\&amp;quot;/tmp/a.pm6\&amp;quot;) &lt;br&gt; \&amp;quot;abc\&amp;quot;; abc();\n&amp;quot;): Error while compiling op call: Error while compiling
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/7cfc6618d893e5a7</guid>
  <author>
  perl6-bugs-follo...@perl.org
  (Dagur)
  </author>
  <pubDate>Mon, 10 Jun 2013 07:32:33 UT
</pubDate>
  </item>
  <item>
  <title>[perl #118397] [BUG] array binding causes failures to be thrown</title>
  <link>http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/493031d0ea18ad33/1607ba0d467c58d1?show_docid=1607ba0d467c58d1</link>
  <description>
  labster: r: sub foo { X::IO::Dir.new(path=&amp;gt;&#39;a&#39;, os-error=&amp;gt;&#39;b&#39;).fail }; my &lt;br&gt; @a = foo(); 1; &lt;br&gt; camelia: rakudo b2072f: ( no output ) &lt;br&gt; labster: r: sub foo { X::IO::Dir.new(path=&amp;gt;&#39;a&#39;, os-error=&amp;gt;&#39;b&#39;).fail }; my &lt;br&gt; @a := foo(); 1; &lt;br&gt; camelia: rakudo b2072f: OUTPUT«Failed to get the directory contents of &#39;a&#39;:
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/493031d0ea18ad33</guid>
  <author>
  perl6-bugs-follo...@perl.org
  (Brent Laabs)
  </author>
  <pubDate>Sun, 09 Jun 2013 21:41:57 UT
</pubDate>
  </item>
  <item>
  <title>[perl #112344] [BUG] Variable return types cause an error</title>
  <link>http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/701d213e84a30aec/09de7246e9375ce4?show_docid=09de7246e9375ce4</link>
  <description>
  Current behavior: &lt;br&gt; &lt;p&gt;$ cat a.pm &lt;br&gt; sub id(Any ::T $x) returns T { &lt;br&gt; $x &lt;br&gt; &lt;p&gt;say id 42; &lt;br&gt; &lt;p&gt;$ ./perl6 a.pm &lt;br&gt; Cannot type check against type variable T &lt;br&gt; in any type_check at src/gen/Metamodel.nqp:305 &lt;br&gt; in sub id at a.pm:2 &lt;br&gt; in block at a.pm:5 &lt;br&gt; &lt;p&gt;-- &lt;br&gt; Will &amp;quot;Coke&amp;quot; Coleda
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/701d213e84a30aec</guid>
  <author>
  perl6-bugs-follo...@perl.org
  (&quot;Will Coleda via RT&quot;)
  </author>
  <pubDate>Sun, 09 Jun 2013 16:48:19 UT
</pubDate>
  </item>
  <item>
  <title>[perl #118389] [BUG] Cannot use constants with heredocs in Rakudo</title>
  <link>http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/77b7b6e7c9524e5a/0a6493c032e71127?show_docid=0a6493c032e71127</link>
  <description>
  &amp;lt;masak&amp;gt; r: constant FOO = q:to /EOF/;␤ OH HAI␤ EOF␤␤say FOO &lt;br&gt; &amp;lt;camelia&amp;gt; rakudo b2072f: OUTPUT«===SORRY!===␤Premature heredoc consumption␤» &lt;br&gt; &amp;lt;masak&amp;gt; what in the world does &amp;quot;Premature heredoc consumption&amp;quot; mean? :( &lt;br&gt; &amp;lt;masak&amp;gt; is it unreasonable to want to put a heredoc string in a
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/77b7b6e7c9524e5a</guid>
  <author>
  perl6-bugs-follo...@perl.org
  (&quot;Carl Mäsak&quot;)
  </author>
  <pubDate>Sun, 09 Jun 2013 15:15:46 UT
</pubDate>
  </item>
  <item>
  <title>[perl #118387] [BUG] LEAVE doesn&#39;t trigger when an exception is thrown</title>
  <link>http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/67f901069029c723/eff973012900a160?show_docid=eff973012900a160</link>
  <description>
  S04 says: &lt;br&gt; &lt;p&gt;LEAVE {...} [executes] at every block exit time (even stack unwinds from &lt;br&gt; exceptions) &lt;br&gt; &lt;p&gt;Running perl6 version 2013.05-15-gcd5ca7c built on parrot 5.2.0 revision &lt;br&gt; RELEASE_5_2_0: &lt;br&gt; &lt;p&gt; &amp;gt; sub foo { LEAVE { say &amp;quot;OK&amp;quot; }; die &amp;quot;died&amp;quot; }; foo() &lt;br&gt; died &lt;br&gt; &lt;p&gt;According to the spec, this should also say OK
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/67f901069029c723</guid>
  <author>
  perl6-bugs-follo...@perl.org
  (Tadeusz Sośnierz)
  </author>
  <pubDate>Sun, 09 Jun 2013 12:08:21 UT
</pubDate>
  </item>
  <item>
  <title>[perl #118343] Problem with Perl website?</title>
  <link>http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/bf83927f90a3d934/2bd50515baf6d5e6?show_docid=2bd50515baf6d5e6</link>
  <description>
  Hey, &lt;br&gt; &lt;p&gt;I just came across your website. It looks pretty good, but you’re losing a lot &lt;br&gt; of potential email subscribers and fans. You can get at least 50% more email &lt;br&gt; subscribers and fans from your daily online visitors. &lt;br&gt; &lt;p&gt;This research infographic &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.incentivibe.com/case_study&quot;&gt;[link]&lt;/a&gt; tells you how to get
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/bf83927f90a3d934</guid>
  <author>
  perl6-bugs-follo...@perl.org
  (&quot;Sid Q.&quot;)
  </author>
  <pubDate>Thu, 06 Jun 2013 00:17:01 UT
</pubDate>
  </item>
  <item>
  <title>[perl #118361] Finding out long name of module fails</title>
  <link>http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/7dc87ec3cd70738b/6e1cc15531d88f54?show_docid=6e1cc15531d88f54</link>
  <description>
  [10:41:11] &amp;lt;lizmat&amp;gt;	r: module Foo { module Bar { say $?PACKAGE } } # shouldn&#39;t this need to say (Foo::Bar) ??? &lt;br&gt; [10:41:12] &amp;lt;+camelia&amp;gt;	rakudo b2072f: OUTPUT«(Bar)␤» &lt;br&gt; [10:53:53] &amp;lt;lizmat&amp;gt;	TimToady: do you have an opinion on &amp;quot;module Foo { module Bar { say $?PACKAGE } } # shouldn&#39;t this need to say (Foo::Bar) ???&amp;quot;
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/7dc87ec3cd70738b</guid>
  <author>
  perl6-bugs-follo...@perl.org
  (Elizabeth Mattijsen)
  </author>
  <pubDate>Thu, 06 Jun 2013 16:00:54 UT
</pubDate>
  </item>
  <item>
  <title>[perl #118339] [BUG] Conspicuous lack of warning when uselessly providing a precedence on a multi operator in Rakudo</title>
  <link>http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/f8ab5ad787dc2033/88711c181340c160?show_docid=88711c181340c160</link>
  <description>
  &amp;lt;flussence&amp;gt; rn: multi infix:&amp;lt;%&amp;gt;($lhs, Str $rhs) is looser(&amp;amp;infix:&amp;lt;xx&amp;gt;) &lt;br&gt; { $lhs.join: $rhs }; say &#39;........&#39; xx 8 % &amp;quot;\n&amp;quot; &lt;br&gt; &amp;lt;camelia&amp;gt; rakudo b2072f, niecza v24-66-gaee6525: OUTPUT«........ &lt;br&gt; ........ ........ ........ ........ ........ ........ ........␤» &lt;br&gt; &amp;lt;flussence&amp;gt; those \s&#39;es should be \n&#39;s...
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/f8ab5ad787dc2033</guid>
  <author>
  perl6-bugs-follo...@perl.org
  (&quot;Carl Mäsak&quot;)
  </author>
  <pubDate>Wed, 05 Jun 2013 19:57:51 UT
</pubDate>
  </item>
  <item>
  <title>[perl #118325] [BUG] $x div 0 dies immediately instead of resulting in a Failure in Rakudo</title>
  <link>http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/e3327db285b26e93/9bffc835969b5963?show_docid=9bffc835969b5963</link>
  <description>
  It&#39;s very frustrating not to be able to copy-paste the code from &lt;br&gt; pmichaud&#39;s talk. The future isn&#39;t fully here yet. &lt;br&gt; &lt;p&gt;&amp;lt;masak&amp;gt; could someone help me reproduce pmichaud&#39;s bug, for the ticket? &lt;br&gt; &amp;lt;quietfanatic&amp;gt; rn: my $zero = 0; my $value = 32 div $zero; say &#39;alive&#39; &lt;br&gt; &amp;lt;camelia&amp;gt; ..rakudo b2072f: OUTPUT«Divide by zero␤ in sub infix:&amp;lt;div&amp;gt; [...]
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/perl.perl6.compiler/browse_thread/thread/e3327db285b26e93</guid>
  <author>
  perl6-bugs-follo...@perl.org
  (&quot;Carl Mäsak&quot;)
  </author>
  <pubDate>Wed, 05 Jun 2013 15:58:23 UT
</pubDate>
  </item>
  </channel>
</rss>
