From d51d08b444e0ea4a2c13b4daf0ce14b53bfbad89 Mon Sep 17 00:00:00 2001 From: Samuel Gruetter Date: Wed, 19 Mar 2014 17:53:49 +0100 Subject: move all tests in tests/untried/neg which use implicits to tests/untried/neg-with-implicits --- tests/untried/neg-with-implicits/t729.scala | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tests/untried/neg-with-implicits/t729.scala (limited to 'tests/untried/neg-with-implicits/t729.scala') diff --git a/tests/untried/neg-with-implicits/t729.scala b/tests/untried/neg-with-implicits/t729.scala new file mode 100644 index 000000000..83e7f4cd1 --- /dev/null +++ b/tests/untried/neg-with-implicits/t729.scala @@ -0,0 +1,23 @@ +trait Parser { + type Node <: NodeImpl; + implicit def coerce(n : NodeImpl) = n.self; + trait NodeImpl { + def self : Node; + } + trait Link { + def from : NodeImpl; + } +} + +trait ScalaParserAutoEdit extends Parser { + type Node <: NodeImpl; + implicit def coerce(node : NodeImpl) = node.self; + trait NodeImpl extends super[Parser].NodeImpl { + def self : Node; + def foo = { + var link : Link = null; + val xxx : NodeImpl = coerce(link.from); + val yyy : NodeImpl = link.from; + } + } +} -- cgit v1.2.3