Beef icon indicating copy to clipboard operation
Beef copied to clipboard

[BUG] Wrong data cycle error

Open Fusioon opened this issue 10 months ago • 0 comments

Code to reproduce:

[AttributeUsage(.Field, false, false)]
struct DataCycleAttribute : Attribute, this(String parent)
{

}

struct Foo
{
	int index;

	[DataCycle(nameof(index))]
	int offset;		// Field 'Foo.offset' causes a data cycle
}

Tested with: Nightly 02/03/2025 (b92b56)

Fusioon avatar Feb 06 '25 14:02 Fusioon