summaryrefslogtreecommitdiffstats
path: root/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/TestData/Sources/ExportDiagnostics_GD0105.cs
blob: f6b13e00fae26bf2b2cc74cf5ae5cf0973adeab3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using Godot;

public partial class ExportDiagnostics_GD0105 : Node
{
    [Export]
    public int {|GD0105:this|}[int index]
    {
        get { return index; }
        set { }
    }
}