public static async Task TestNestedStructStaticAsync()
        {
            var ns = new NestedStruct(3);

            Console.WriteLine($"break here");
            await Task.CompletedTask;
        }
        public static void TestNestedStructStatic()
        {
            var ns = new NestedStruct(3);

            Console.WriteLine($"break here");
        }