# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #112364]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=112364 >
<pmichaud> niecza: class ABC { our sub xyz() { 'xyz' } }; say ABC.WHO.WHAT
<p6eval> niecza v15-6-gefda208: OUTPUT«Stash()»
<pmichaud> niecza: class ABC { our sub xyz() { 'xyz' } }; say ABC::.WHAT
<p6eval> niecza v15-6-gefda208: OUTPUT«Stash()»
<pmichaud> niecza++
<pmichaud> rakudo: class ABC { our sub xyz() { 'xyz' } }; say ABC.WHO.WHAT
<p6eval> rakudo 4373f0: OUTPUT«Stash()»
<pmichaud> rakudo: class ABC { our sub xyz() { 'xyz' } }; say ABC::.WHAT
<p6eval> rakudo 4373f0: OUTPUT«ABC()»
<pmichaud> rakudo--