summaryrefslogtreecommitdiff
path: root/test/files/run/t9298/VC.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t9298/VC.scala')
-rw-r--r--test/files/run/t9298/VC.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/files/run/t9298/VC.scala b/test/files/run/t9298/VC.scala
new file mode 100644
index 0000000000..916e62dc59
--- /dev/null
+++ b/test/files/run/t9298/VC.scala
@@ -0,0 +1,5 @@
+class VC(val s: String) extends AnyVal
+
+class Client {
+ def test = new Test().consume(new VC(""))
+}