aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/naming-resolution/callsite.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/naming-resolution/callsite.scala')
-rw-r--r--tests/pending/naming-resolution/callsite.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/pending/naming-resolution/callsite.scala b/tests/pending/naming-resolution/callsite.scala
new file mode 100644
index 000000000..b6f2000c9
--- /dev/null
+++ b/tests/pending/naming-resolution/callsite.scala
@@ -0,0 +1,7 @@
+package naming.resolution
+
+import java.nio.file._ // Imports `Files`
+
+object Resolution {
+ def gimmeFiles: Files = Files.list(Paths.get("."))
+}