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

public partial class ExportDiagnostics_GD0102 : Node
{
    public struct MyStruct { }

    [Export]
    public MyStruct {|GD0102:StructField|};

    [Export]
    public MyStruct {|GD0102:StructProperty|} { get; set; }
}