1-
21using System . Reflection . Emit ;
32
43#if LIGHT_EXPRESSION
@@ -11,7 +10,6 @@ namespace FastExpressionCompiler.LightExpression.IssueTests;
1110namespace FastExpressionCompiler . IssueTests ;
1211#endif
1312
14-
1513public class Issue414_Incorrect_il_when_passing_by_ref_value : ITest
1614{
1715 public int Run ( )
@@ -40,7 +38,6 @@ public int Run()
4038
4139 delegate int MyDelegate ( ref int x ) ;
4240
43-
4441 public void Issue414_ReturnRefParameter ( )
4542 {
4643 var p = Parameter ( typeof ( int ) . MakeByRefType ( ) ) ;
@@ -113,7 +110,6 @@ public struct MyStruct
113110
114111 delegate int MyDelegateStruct ( MyStruct x ) ;
115112
116-
117113 public void Issue413_ParameterStructIndexer ( )
118114 {
119115 var p = Parameter ( typeof ( MyStruct ) ) ;
@@ -143,7 +139,6 @@ public void Issue413_ParameterStructIndexer()
143139
144140 delegate int MyDelegateNoArgs ( ) ;
145141
146-
147142 public void Issue413_VariableStructIndexer ( )
148143 {
149144 var p = Parameter ( typeof ( MyStruct ) ) ;
@@ -249,7 +244,6 @@ public void Issue415_ReturnRefParameterByRef()
249244
250245 public static ref int ReturnRef ( ref int x ) => ref x ;
251246
252-
253247 public void Issue415_ReturnRefParameterByRef_ReturnRefCall ( )
254248 {
255249 var p = Parameter ( typeof ( int ) . MakeByRefType ( ) ) ;
@@ -275,7 +269,6 @@ public void Issue415_ReturnRefParameterByRef_ReturnRefCall()
275269 Asserts . AreEqual ( 18 , x ) ;
276270 }
277271
278-
279272 public void Issue415_ReturnRefParameter_ReturnRefCall ( )
280273 {
281274 var p = Parameter ( typeof ( int ) . MakeByRefType ( ) ) ;
0 commit comments