summaryrefslogtreecommitdiff
path: root/test/files/presentation/t8941/src/Source.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/presentation/t8941/src/Source.scala')
-rw-r--r--test/files/presentation/t8941/src/Source.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/presentation/t8941/src/Source.scala b/test/files/presentation/t8941/src/Source.scala
new file mode 100644
index 0000000000..7438cccb03
--- /dev/null
+++ b/test/files/presentation/t8941/src/Source.scala
@@ -0,0 +1,8 @@
+object Foo {
+ implicit class MatCreator(val ctx: StringContext) extends AnyVal {
+ def m(args: Any*): Unit = {
+ ctx.checkLengths(args)
+ }
+ ???/*?*/
+ }
+}