mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* marshal.c (r_object0): singleton class instance can't be loaded. (ruby-bugs-ja:PR#366)
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3132 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d1f015f92e
commit
e6c77e4c4c
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu Dec 12 16:26:31 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
||||
|
||||
* marshal.c (r_object0): singleton class instance can't be loaded.
|
||||
(ruby-bugs-ja:PR#366)
|
||||
|
||||
Wed Dec 11 23:35:43 2002 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* ext/extmk.rb (create_makefile): -no-undefined -> --no-undefined.
|
||||
|
|
|
@ -902,6 +902,9 @@ r_object0(arg, proc)
|
|||
{
|
||||
VALUE c = path2class(r_unique(arg));
|
||||
|
||||
if (FL_TEST(c, FL_SINGLETON)) {
|
||||
rb_raise(rb_eTypeError, "singleton can't be loaded");
|
||||
}
|
||||
v = r_object0(arg, 0);
|
||||
if (rb_special_const_p(v) || TYPE(v) == T_OBJECT || TYPE(v) == T_CLASS) {
|
||||
format_error:
|
||||
|
|
Loading…
Reference in a new issue