aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/DottyPredef.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/DottyPredef.scala')
-rw-r--r--src/dotty/DottyPredef.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/dotty/DottyPredef.scala b/src/dotty/DottyPredef.scala
new file mode 100644
index 000000000..3ffa4049f
--- /dev/null
+++ b/src/dotty/DottyPredef.scala
@@ -0,0 +1,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] = ???
+} \ No newline at end of file