From 7d5dc08826079059d7f63f35d785a92ab0807d2d Mon Sep 17 00:00:00 2001 From: Jason Zaugg Date: Sat, 8 Dec 2012 08:25:55 +0100 Subject: [PATCH] SI-5858 xml.Node construction ambiguity is gone. Test case to show that the fix for SI-5859 saves the day. --- test/files/pos/t5858.scala | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test/files/pos/t5858.scala diff --git a/test/files/pos/t5858.scala b/test/files/pos/t5858.scala new file mode 100644 index 000000000000..f2b0f58d76bf --- /dev/null +++ b/test/files/pos/t5858.scala @@ -0,0 +1,3 @@ +object Test { + new xml.Elem(null, null, xml.Null, xml.TopScope, Nil: _*) // was ambiguous +}