[ruby-core:68831] [Ruby trunk - Bug #11055] [Assigned] autoload resets private_constant

From: nobu@...
Date: 2015-04-10 08:36:34 UTC
List: ruby-core #68831
Issue #11055 has been reported by Nobuyoshi Nakada.

----------------------------------------
Bug #11055: autoload resets private_constant
https://bugs.ruby-lang.org/issues/11055

* Author: Nobuyoshi Nakada
* Status: Assigned
* Priority: Normal
* Assignee: Yukihiro Matsumoto
* ruby -v: 50203
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN
----------------------------------------
Is this behavior intentional?

Suppose the following file:

~~~
$ cat a/b.rb
class A; B = 1; end
~~~

This causes `NameError`.

~~~
$ ruby -I. -e 'class A;autoload :B, "a/b.rb"; private_constant :B; end' -e 'p A::B'
-e:2:in `<main>': private constant A::B referenced (NameError)
~~~

But after it got loaded, `A::B` becomes public.

~~~
$ ruby -I. -e 'class A;autoload :B, "a/b.rb"; private_constant :B; B; end' -e 'p A::B'
1
~~~




-- 
https://bugs.ruby-lang.org/

In This Thread

Prev Next