summaryrefslogtreecommitdiff
path: root/test/files/jvm/serialization.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/serialization.scala')
-rw-r--r--test/files/jvm/serialization.scala26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/files/jvm/serialization.scala b/test/files/jvm/serialization.scala
index b8656888c6..06086f4038 100644
--- a/test/files/jvm/serialization.scala
+++ b/test/files/jvm/serialization.scala
@@ -532,31 +532,6 @@ object Test6 {
}
//############################################################################
-// Nested objects cannot get readresolve automatically because after deserialization
-// they would be null (they are treated as lazy vals)
-@serializable
-class Outer {
-
- @serializable
- object Inner
-}
-
-object Test7 {
- val x = new Outer
- x.Inner // initialize
- try {
- val y:Outer = read(write(x))
- if (y.Inner == null)
- println("Inner object is null")
- }
- catch {
- case e: Exception =>
- println("Error in Test7: " + e)
- }
-
-}
-
-//############################################################################
// Test code
object Test {
@@ -567,7 +542,6 @@ object Test {
Test4_xml
Test5
Test6
- Test7
}
}