aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg/macro-bundle-whitebox-use-raw/Test_2.scala
diff options
context:
space:
mode:
authorSamuel Gruetter <samuel.gruetter@epfl.ch>2014-03-19 17:53:49 +0100
committerSamuel Gruetter <samuel.gruetter@epfl.ch>2014-03-19 17:53:49 +0100
commitd51d08b444e0ea4a2c13b4daf0ce14b53bfbad89 (patch)
tree1d3a66fc0f5f839a561a2987159cb5b841b89257 /tests/untried/neg/macro-bundle-whitebox-use-raw/Test_2.scala
parent24ac35546c2c159403e91144e0e4add585ee9ae5 (diff)
downloaddotty-d51d08b444e0ea4a2c13b4daf0ce14b53bfbad89.tar.gz
dotty-d51d08b444e0ea4a2c13b4daf0ce14b53bfbad89.tar.bz2
dotty-d51d08b444e0ea4a2c13b4daf0ce14b53bfbad89.zip
move all tests in tests/untried/neg which use implicits to tests/untried/neg-with-implicits
Diffstat (limited to 'tests/untried/neg/macro-bundle-whitebox-use-raw/Test_2.scala')
-rw-r--r--tests/untried/neg/macro-bundle-whitebox-use-raw/Test_2.scala19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/untried/neg/macro-bundle-whitebox-use-raw/Test_2.scala b/tests/untried/neg/macro-bundle-whitebox-use-raw/Test_2.scala
deleted file mode 100644
index 995da737c..000000000
--- a/tests/untried/neg/macro-bundle-whitebox-use-raw/Test_2.scala
+++ /dev/null
@@ -1,19 +0,0 @@
-object Test extends App {
- println(ReturnTypeRefinement.foo.x)
-
- case class Foo(i: Int, s: String, b: Boolean)
- def foo[C, L](c: C)(implicit iso: FundepMaterialization[C, L]): L = iso.to(c)
- locally {
- val equiv = foo(Foo(23, "foo", true))
- def typed[T](t: => T): Unit = {}
- typed[(Int, String, Boolean)](equiv)
- println(equiv)
- }
-
- println(implicitly[DynamicMaterialization[C1]])
- println(implicitly[DynamicMaterialization[C2]])
-
- 42 match {
- case ExtractorMacro(x) => println(x)
- }
-}