summaryrefslogtreecommitdiffstats
path: root/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Sample/Generic2T.cs
blob: eef80ff951d3cf88933d2b6b8b3857af701f0c22 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma warning disable CS0169

namespace Godot.SourceGenerators.Sample
{
    // Generic again but different generic parameters
    public partial class Generic2T<T, R> : GodotObject
    {
        private int _field;
    }
}