summaryrefslogtreecommitdiffstats
path: root/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/TestData/Sources/SameName.GD0003.cs
blob: 3f4f79fc49a197c8477b2ce47a2ca7adf5367aee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Godot;

namespace NamespaceA
{
    partial class SameName : GodotObject
    {
        private int _field;
    }
}

// SameName again but different namespace
namespace NamespaceB
{
    partial class {|GD0003:SameName|} : GodotObject
    {
        private int _field;
    }
}