We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb11113 commit 02ff089Copy full SHA for 02ff089
compiler/test/dotty/tools/dotc/transform/SpecializeTuplesTests.scala
@@ -17,8 +17,9 @@ class SpecializeTuplesTests extends DottyBytecodeTest {
17
|}""".stripMargin
18
19
checkBCode(source) { dir =>
20
- assertNoBoxing("foo", findClass("Test", dir).methods)
21
- assertNoBoxing("bar", findClass("Test", dir).methods)
+ val methods = findClass("Test", dir).methods.nn
+ assertNoBoxing("foo", methods)
22
+ assertNoBoxing("bar", methods)
23
}
24
25
@@ -39,7 +40,7 @@ class SpecializeTuplesTests extends DottyBytecodeTest {
39
40
41
42
- val methods = findClass("Test", dir).methods
43
44
assertBoxing("t", methods)
45
assertBoxing("_1", methods)
46
assertBoxing("_2", methods)
0 commit comments