Skip to content

Commit 71e2d58

Browse files
author
Maksim Volkau
committed
small cleanup
1 parent 7dbafcf commit 71e2d58

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

test/FastExpressionCompiler.IssueTests/Issue414_Incorrect_il_when_passing_by_ref_value.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
using System.Reflection.Emit;
32

43
#if LIGHT_EXPRESSION
@@ -11,7 +10,6 @@ namespace FastExpressionCompiler.LightExpression.IssueTests;
1110
namespace FastExpressionCompiler.IssueTests;
1211
#endif
1312

14-
1513
public 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

Comments
 (0)