aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/Predef.scala
blob: 106b62b1d783694684978ce9955ff0d7b297b664 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package dotty

import scala.reflect.ClassTag
import scala.reflect.runtime.universe.TypeTag

object Predef {
  /** implicits for ClassTag and TypeTag. Should be implemented with macros */
  implicit def classTag[T]: ClassTag[T] = ???
  implicit def typeTag[T]: TypeTag[T] = ???
}