diff --git a/tests/multi-language-repo/main2.cs b/tests/multi-language-repo/main2.cs new file mode 100644 index 000000000..46fcb5c03 --- /dev/null +++ b/tests/multi-language-repo/main2.cs @@ -0,0 +1,11 @@ +using System; + +namespace HelloWorldApp2 { + class Geeks2 { + static void Main2(string[] args) { + if (true) { + Console.WriteLine("Hello World!"); + } + } + } +}