GitNexus/gitnexus/test/fixtures/lang-resolution/csharp-hello/Hello.cs
Sam Fakhreddine 95a38c7e2d
fix(group): surface friendly error when group name not found (#903 regression test) (#989)
* fix(group): surface friendly error when group name not found

Squashed commits:
- test(csharp): add #903 regression — parse completeness for single-file C# repo
- fix(group): add GroupNotFoundError guard to groupList + re-throw tests for groupQuery/groupStatus
- fix(test): restore section comments in csharp.test.ts stripped during rebase

* fix(group): catch GroupNotFoundError explicitly in groupContext and groupImpact
2026-04-21 15:52:36 +01:00

17 lines
283 B
C#

namespace Demo;
public class Greeter
{
public string Greet(string name) => $"Hello, {name}!";
public static void Main(string[] args)
{
var g = new Greeter();
System.Console.WriteLine(g.Greet("world"));
}
}
public interface IFoo
{
void Bar();
}