aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/import-rewrite/file.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/import-rewrite/file.scala')
-rw-r--r--tests/pending/import-rewrite/file.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/pending/import-rewrite/file.scala b/tests/pending/import-rewrite/file.scala
deleted file mode 100644
index e52581e81..000000000
--- a/tests/pending/import-rewrite/file.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-package file
-
-class File private (val str: String) {
- def name: String = "name"
-}
-
-object File {
- def apply(str: String): File = new File(str)
-}
-