We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 487992d commit 281178fCopy full SHA for 281178f
stdlib-bootstrapped-tasty-tests/src/Main.scala
@@ -17,6 +17,7 @@ object HelloWorld:
17
testScala2ObjectParents()
18
testScala2CaseClassUnderscoreMembers()
19
testScalaNumberUnderlying()
20
+ testArrayOps()
21
scala.collection.mutable.UnrolledBufferTest.test()
22
}
23
@@ -68,3 +69,9 @@ object HelloWorld:
68
69
val _: Object = MyNumber2(BigInt(1)).underlying
70
val _: Object = (MyNumber2(BigInt(1)): ScalaNumber).underlying
71
72
+
73
+ def testArrayOps() = {
74
+ new collection.ArrayOps[String](Array[String]("foo")).exists(x => true)
75
+ }
76
77
+end HelloWorld
0 commit comments