mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
using System; |
|
|
|
namespace ICSharpCode.Decompiler.Tests.TestCases.Correctness |
|
{ |
|
class DynamicTests |
|
{ |
|
delegate void RefAction<T>(ref T arg); |
|
|
|
static void Main(string[] args) |
|
{ |
|
PrintResult((ref dynamic x) => x = x + 2.0, 5.0); |
|
PrintResult((ref dynamic x) => x = x + 2.0, 5); |
|
PrintResult((ref dynamic x) => x = x + 2, 5.0); |
|
PrintResult((ref dynamic x) => x = x + 2, 5); |
|
PrintResult((ref dynamic x) => x = x - 2.0, 5.0); |
|
PrintResult((ref dynamic x) => x = x - 2.0, 5); |
|
PrintResult((ref dynamic x) => x = x - 2, 5.0); |
|
PrintResult((ref dynamic x) => x = x - 2, 5); |
|
PrintResult((ref dynamic x) => x = x * 2.0, 5.0); |
|
PrintResult((ref dynamic x) => x = x * 2.0, 5); |
|
PrintResult((ref dynamic x) => x = x * 2, 5.0); |
|
PrintResult((ref dynamic x) => x = x * 2, 5); |
|
PrintResult((ref dynamic x) => x = x / 2.0, 5.0); |
|
PrintResult((ref dynamic x) => x = x / 2.0, 5); |
|
PrintResult((ref dynamic x) => x = x / 2, 5.0); |
|
PrintResult((ref dynamic x) => x = x / 2, 5); |
|
} |
|
|
|
private static void PrintResult(RefAction<dynamic> p, dynamic arg) |
|
{ |
|
p(ref arg); |
|
Console.WriteLine(arg); |
|
} |
|
} |
|
}
|
|
|