aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/DottyPredef.scala
blob: 3ffa4049f175429ab2551ae4dc4c2b4b5895aa94 (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 DottyPredef {
  /** implicits for ClassTag and TypeTag. Should be implemented with macros */
  implicit def classTag[T]: ClassTag[T] = ???
  implicit def typeTag[T]: TypeTag[T] = ???
}