aboutsummaryrefslogblamecommitdiff
path: root/src/dotty/DottyPredef.scala
blob: b4580b6a3609900c8465c1e485f0777afadfe197 (plain) (tree)
1
2
3
4
5
6
7
8
9




                                             
                    


                                                                              
 
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] = ???
}