summaryrefslogtreecommitdiff
path: root/test/files/pos/implicits.scala
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-04-12 01:59:46 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-04-12 02:04:14 +0200
commit814cf34fb00f9ccb001249f4b3445ebc4f9942c9 (patch)
tree24dd54da571d27f10b0c482a6e08932c318fd7b2 /test/files/pos/implicits.scala
parentdb3056f11730da19e4e56f09f12e300bda62f57c (diff)
downloadscala-814cf34fb00f9ccb001249f4b3445ebc4f9942c9.tar.gz
scala-814cf34fb00f9ccb001249f4b3445ebc4f9942c9.tar.bz2
scala-814cf34fb00f9ccb001249f4b3445ebc4f9942c9.zip
Next generation of macros
Implements SIP 16: Self-cleaning macros: http://bit.ly/wjjXTZ Features: * Macro defs * Reification * Type tags * Manifests aliased to type tags * Extended reflection API * Several hundred tests * 1111 changed files Not yet implemented: * Reification of refined types * Expr.value splicing * Named and default macro expansions * Intricacies of interaction between macros and implicits * Emission of debug information for macros (compliant with JSR-45) Dedicated to Yuri Alekseyevich Gagarin
Diffstat (limited to 'test/files/pos/implicits.scala')
-rw-r--r--test/files/pos/implicits.scala89
1 files changed, 0 insertions, 89 deletions
diff --git a/test/files/pos/implicits.scala b/test/files/pos/implicits.scala
deleted file mode 100644
index 2c01dd0ba8..0000000000
--- a/test/files/pos/implicits.scala
+++ /dev/null
@@ -1,89 +0,0 @@
-// #1435
-object t1435 {
- implicit def a(s:String):String = error("")
- implicit def a(i:Int):String = error("")
- implicit def b(i:Int):String = error("")
-}
-
-class C1435 {
- val v:String = {
- import t1435.a
- 2
- }
-}
-
-// #1492
-class C1492 {
-
- class X
-
- def foo(x: X => X) {}
-
- foo ( implicit x => implicitly[X] )
- foo { implicit x => implicitly[X] }
-}
-
-// #1579
-object Test1579 {
- class Column
- class Query[E](val value: E)
- class Invoker(q: Any) { val foo = null }
-
- implicit def unwrap[C](q: Query[C]) = q.value
- implicit def invoker(q: Query[Column]) = new Invoker(q)
-
- val q = new Query(new Column)
- q.foo
-}
-// #1625
-object Test1625 {
-
- class Wrapped(x:Any) {
- def unwrap() = x
- }
-
- implicit def byName[A](x: =>A) = new Wrapped(x)
-
- implicit def byVal[A](x: A) = x
-
- def main(args: Array[String]) = {
-
-// val res:Wrapped = 7 // works
-
- val res = 7.unwrap() // doesn't work
-
- println("=> result: " + res)
- }
-}
-
-object Test2188 {
- implicit def toJavaList[A: ClassManifest](t:collection.Seq[A]):java.util.List[A] = java.util.Arrays.asList(t.toArray:_*)
-
- val x: java.util.List[String] = List("foo")
-}
-
-object TestNumericWidening {
- val y = 1
- val x: java.lang.Long = y
-}
-
-// #2709
-package foo2709 {
- class A
- class B
-
- package object bar {
- implicit def a2b(a: A): B = new B
- }
-
- package bar {
- object test {
- new A: B
- }
- }
-}
-
-// Problem with specs
-object specsProblem {
- println(implicitly[Manifest[Class[_]]])
-}