From 65d4fd7144ac6455bcbe5adab65873d286788438 Mon Sep 17 00:00:00 2001 From: Elizabeth Mattijsen Date: Wed, 24 Oct 2018 14:26:16 +0200 Subject: [PATCH] Update reason for commenting out --- src/core/Nil.pm6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Nil.pm6 b/src/core/Nil.pm6 index 80e9c4f609c..937a2b82819 100644 --- a/src/core/Nil.pm6 +++ b/src/core/Nil.pm6 @@ -9,7 +9,7 @@ my class Nil is Cool { # declared in BOOTSTRAP method AT-POS(| --> Nil) { } method AT-KEY(| --> Nil) { } -# method ACCEPTS(*@ --> Nil) { } # XXX spec says Nil, but makes spectest hang +# method ACCEPTS(*@ --> Nil) { } # XXX spec says Nil, but makes install fail method BIND-POS(|) { die "Attempted to BIND-POS to {self.gist}." } method BIND-KEY(|) { Failure.new(X::Bind.new(target => self.gist)) }