aboutsummaryrefslogtreecommitdiff
path: root/library
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2017-03-05 20:50:29 +0900
committerGuillaume Martres <smarter@ubuntu.com>2017-03-07 18:54:13 +0100
commit7845875306732fba3e9db25c9b11dde7df31f77a (patch)
tree7962f2d8592776d8171e801d915d767af2fb7d31 /library
parent7c3e094f9d3b0c90a5f3d70ced9afe73a7ee498b (diff)
downloaddotty-7845875306732fba3e9db25c9b11dde7df31f77a.tar.gz
dotty-7845875306732fba3e9db25c9b11dde7df31f77a.tar.bz2
dotty-7845875306732fba3e9db25c9b11dde7df31f77a.zip
DottyPredef: remove dummy typeTag implicit
This avoids a dependency on the scala-reflect jar
Diffstat (limited to 'library')
-rw-r--r--library/src/dotty/DottyPredef.scala3
1 files changed, 0 insertions, 3 deletions
diff --git a/library/src/dotty/DottyPredef.scala b/library/src/dotty/DottyPredef.scala
index c7cf2a906..12040e0f3 100644
--- a/library/src/dotty/DottyPredef.scala
+++ b/library/src/dotty/DottyPredef.scala
@@ -1,14 +1,11 @@
package dotty
-import scala.reflect.runtime.universe.TypeTag
import scala.reflect.ClassTag
import scala.Predef.???
import scala.collection.Seq
/** unimplemented implicit for TypeTag */
object DottyPredef {
- implicit def typeTag[T]: TypeTag[T] = ???
-
/** A fall-back implicit to compare values of any types.
* The compiler will restrict implicit instances of `eqAny`. An instance
* `eqAny[T, U]` is _valid_ if `T <: U` or `U <: T` or both `T` and `U` are