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.
20 lines
402 B
20 lines
402 B
using Microsoft.VisualBasic.CompilerServices; |
|
using System; |
|
using System.Collections.Generic; |
|
using System.Diagnostics; |
|
|
|
namespace ICSharpCode.Decompiler.Tests.TestCases.ILPretty |
|
{ |
|
[StandardModule] |
|
internal sealed class Issue646 |
|
{ |
|
[STAThread] |
|
public static void Main() |
|
{ |
|
List<string> list = new List<string>(); |
|
foreach (string item in list) { |
|
Debug.WriteLine(item); |
|
} |
|
} |
|
} |
|
}
|
|
|