e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
29 lines
311 B
C#
29 lines
311 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
class EncodingVariableScopeInfoLiftedFieldName
|
|
{
|
|
public static void Main ()
|
|
{
|
|
}
|
|
|
|
async Task Test (int arg)
|
|
{
|
|
if (arg == 1) {
|
|
{
|
|
}
|
|
}
|
|
|
|
if (arg > 0)
|
|
{
|
|
var x = 1;
|
|
await Task.Yield();
|
|
}
|
|
else
|
|
{
|
|
var x = 2;
|
|
await Task.Yield();
|
|
}
|
|
}
|
|
}
|