Semantics\PrimaryConstructorTests.cs (71)
6513("0001", Success | Shadows, "public int F = p1;"),
6514("0002", Success | Shadows, "public int P {get;} = p1;"),
6515("0003", Success | Shadows, "public event System.Action E = () => p1.ToString();"),
6528("0017", Captured | Success, "void M() { p1 = 0; }"),
6529("0018", Captured | Success, "int P { get { return p1; } }"),
6530("0019", Captured | Success, "int P { set { p1 = 0; } }"),
6531("0020", Captured | Success, "int P { set {} get { return p1; } }"),
6532("0021", Captured | Success, "int P { get => 0; set { p1 = 0; } }"),
6533("0022", Captured | Success, "event System.Action E { add { p1 = 0; } remove {} }"),
6534("0023", Captured | Success, "event System.Action E { add {} remove { p1 = 0; } }"),
6535("0024", Captured | Success, "int this[int x] { get { return p1; } }"),
6536("0025", Captured | Success, "int this[int x] { set { p1 = 0; } }"),
6537("0026", Captured | Success, "int this[int x] { set {} get { return p1; } }"),
6538("0027", Captured | Success, "int this[int x] { get => 0; set { p1 = 0; } }"),
6539("0028", Captured | Success, "~C1() { p1 = 0; }"),
6748("1401", Success | Shadows, "public System.Func<int> F = (() => p1);"),
6749("1402", Success | Shadows, "public System.Func<System.Func<int>> F = (() => (System.Func<int>)(() => p1));"),
6750("1403", Success | Shadows, "public System.Func<int> F = () => { return local(); int local() => p1; };"),
6751("1404", Success | Shadows, "public System.Func<int> P {get;} = (() => p1);"),
6752("1405", Success | Shadows, "public System.Func<System.Func<int>> P {get;} = (() => (System.Func<int>)(() => p1));"),
6753("1406", Success | Shadows, "public System.Func<int> P {get;} = () => { return local(); int local() => p1; };"),
6754("1407", Success | Shadows, "public event System.Func<System.Func<int>> E = (() => (System.Func<int>)(() => p1));"),
6755("1408", Success | Shadows, "public event System.Func<int> E = () => { return local(); int local() => p1; };"),
6763("1502", Captured | Success, "public int P => p1;"),
6773("1517", Captured | Success, "void M() => p1 = 0;"),
6774("1518", Captured | Success, "int P { get => p1; }"),
6775("1519", Captured | Success, "int P { set => p1 = 0; }"),
6776("1520", Captured | Success, "int P { set {} get => p1; }"),
6777("1521", Captured | Success, "int P { get => 0; set => p1 = 0; }"),
6778("1524", Captured | Success, "int this[int x] { get => p1; }"),
6779("1525", Captured | Success, "int this[int x] { set => p1 = 0; }"),
6780("1526", Captured | Success, "int this[int x] { set {} get => p1; }"),
6781("1527", Captured | Success, "int this[int x] { get => 0; set => p1 = 0; }"),
6782("1528", Captured | Success, "~C1() => p1 = 0;"),
6906("2101", Success | Shadows, "public System.Action F = () => { [Attr1(nameof(p1))] void local(){} local(); };"),
6907("2102", Success | Shadows, "public System.Action P {get;} = () => { [Attr1(nameof(p1))] void local(){} local(); };"),
6908("2103", Success | Shadows, "public event System.Action E = () => { [Attr1(nameof(p1))] void local(){} local(); };"),
6968("2301", Success | Shadows, "public System.Action F = () => { void local(string x = nameof(p1)){} local(); };"),
6969("2302", Success | Shadows, "public System.Action P {get;} = () => { void local(string x = nameof(p1)){} local(); };"),
6970("2303", Success | Shadows, "public event System.Action E = () => { void local(string x = nameof(p1)){} local(); };"),
6999("2401", Success | Shadows, "public int F = nameof(p1).Length;"),
7000("2402", Success | Shadows, "public int P {get;} = nameof(p1).Length;"),
7001("2403", Success | Shadows, "public event System.Action E = () => nameof(p1).Length.ToString();"),
15171("0101", Success, "(ref int p1) { void M1() { nameof(p1).ToString(); } }", null),
15172("0102", Success, "(ref int p1) { void M1() { local(); void local() { nameof(p1).ToString(); } } }", null),
15173("0103", Success, "(ref int p1) { void M1() { local1(); void local1() { local2(); void local2() {nameof(p1).ToString(); } } } }", null),
15174("0104", Success, "(in int p1) { void M1() { nameof(p1).ToString(); } }", null),
15175("0105", Success, "(in int p1) { void M1() { local(); void local() { nameof(p1).ToString(); } } }", null),
15176("0106", Success, "(in int p1) { void M1() { local1(); void local1() { local2(); void local2() { nameof(p1).ToString(); } } } }", null),
15177("0107", Success, "(out int p1) { int x = p1 = 0; void M1() { nameof(p1).ToString(); } }", null),
15178("0108", Success, "(out int p1) { int x = p1 = 0; void M1() { local(); void local() { nameof(p1).ToString(); } } }", null),
15179("0109", Success, "(out int p1) { int x = p1 = 0; void M1() { local1(); void local1() { local2(); void local2() { nameof(p1).ToString(); } } } }", null),
15180("0110", Success, "(S1 p1) { void M1() { nameof(p1).ToString(); } } ref struct S1 { public void M(){} }", null),
15181("0111", Success, "(S1 p1) { void M1() { local(); void local() { nameof(p1).ToString(); } } } ref struct S1{ public void M(){} }", null),
15182("0112", Success, "(S1 p1) { void M1() { local1(); void local1() { local2(); void local2() { nameof(p1).ToString(); } } } } ref struct S1{ public void M(){} }", null),
15197("0301", Success, "(ref int p1) { System.Action F = () => nameof(p1).ToString(); }", null),
15198("0302", Success, "(ref int p1) { System.Action P { get; } = () => nameof(p1).ToString(); }", null),
15199("0303", Success, "(ref int p1) { public event System.Action E = () => nameof(p1).ToString(); }", null),
15200("0304", Success, "(in int p1) { System.Action F = () => nameof(p1).ToString(); }", null),
15201("0305", Success, "(in int p1) { System.Action P { get; } = () => nameof(p1).ToString(); }", null),
15202("0306", Success, "(in int p1) { public event System.Action E = () => nameof(p1).ToString(); }", null),
15203("0307", Success, "(out int p1) { System.Action F = (p1 = 0) == 0 ? () => nameof(p1).ToString() : null; }", null),
15204("0308", Success, "(out int p1) { System.Action P { get; } = (p1 = 0) == 0 ? () => nameof(p1).ToString() : null; }", null),
15205("0309", Success, "(out int p1) { public event System.Action E = (p1 = 0) == 0 ? () => nameof(p1).ToString() : null; }", null),
15206("0310", Success, "(S1 p1) { System.Action F = () => nameof(p1).ToString(); } ref struct S1{ public void M(){} }", null),
15207("0311", Success, "(S1 p1) { System.Action P { get; } = () => nameof(p1).ToString(); } ref struct S1{ public void M(){} }", null),
15208("0312", Success, "(S1 p1) { public event System.Action E = () => nameof(p1).ToString(); } ref struct S1{ public void M(){} }", null),
15218("1011", Success, "(ref int p1) : Base(() => nameof(p1).ToString()); class Base { public Base(System.Action x) {} }", null),
15219("1012", Success, "(in int p1) : Base(() => nameof(p1).ToString()); class Base { public Base(System.Action x) {} }", null),
15220("1013", Success, "(out int p1) : Base(p1 = 0, () => nameof(p1).ToString()); class Base { public Base(int y, System.Action x) {} }", null),
15221("1014", Success, "(S1 p1) : Base(() => nameof(p1).ToString()); ref struct S1{ public void M(){} } class Base { public Base(System.Action x) {} }", null),