aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/build_defs/scala/test/OtherLib.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build_defs/scala/test/OtherLib.scala')
-rw-r--r--tools/build_defs/scala/test/OtherLib.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/tools/build_defs/scala/test/OtherLib.scala b/tools/build_defs/scala/test/OtherLib.scala
deleted file mode 100644
index 2f69f68a7b..0000000000
--- a/tools/build_defs/scala/test/OtherLib.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-package scala.test
-
-// It is just to show how a Scala library can depend on another Scala library.
-object OtherLib {
- def getMessage(): String = {
- // This won't compile because Exported is exported, not a dep:
- // Exported.message
- "scala!"
- }
-}