Displaying 1 result from an estimated 1 matches for "test_gh".
2003 Nov 04
2
Object saved from 1.7.1, loaded in 1.8.0
...example' of the issue. First the part in 1.7.1:
> require("methods")
[1] TRUE
> setClass("foo",representation("vector",label="character"))
[1] "foo"
> x <- new("foo",1:2,label=LETTERS[1:2])
> save(x,file="f:/temp/test_gh.171.Rdata")
Then in 1.8.0:
> require("methods")
[1] TRUE
> setClass("foo",representation("vector",label="character"))
[1] "foo"
> load("f:/temp/test_gh.171.Rdata")
> new("foo",x,label=x@label)
Error in initiali...