File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
compiler/test/dotty/tools/dotc/transform Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,9 @@ class SpecializeTuplesTests extends DottyBytecodeTest {
17
17
|}""" .stripMargin
18
18
19
19
checkBCode(source) { dir =>
20
- assertNoBoxing(" foo" , findClass(" Test" , dir).methods)
21
- assertNoBoxing(" bar" , findClass(" Test" , dir).methods)
20
+ val methods = findClass(" Test" , dir).methods.nn
21
+ assertNoBoxing(" foo" , methods)
22
+ assertNoBoxing(" bar" , methods)
22
23
}
23
24
}
24
25
@@ -39,7 +40,7 @@ class SpecializeTuplesTests extends DottyBytecodeTest {
39
40
|}""" .stripMargin
40
41
41
42
checkBCode(source) { dir =>
42
- val methods = findClass(" Test" , dir).methods
43
+ val methods = findClass(" Test" , dir).methods.nn
43
44
assertBoxing(" t" , methods)
44
45
assertBoxing(" _1" , methods)
45
46
assertBoxing(" _2" , methods)
You can’t perform that action at this time.
0 commit comments