Semantics\PrimaryConstructorTests.cs (71)
7139("0001", Success | Shadows, "public int F = p1;"),
7140("0002", Success | Shadows, "public int P {get;} = p1;"),
7141("0003", Success | Shadows, "public event System.Action E = () => p1.ToString();"),
7154("0017", Captured | Success, "void M() { p1 = 0; }"),
7155("0018", Captured | Success, "int P { get { return p1; } }"),
7156("0019", Captured | Success, "int P { set { p1 = 0; } }"),
7157("0020", Captured | Success, "int P { set {} get { return p1; } }"),
7158("0021", Captured | Success, "int P { get => 0; set { p1 = 0; } }"),
7159("0022", Captured | Success, "event System.Action E { add { p1 = 0; } remove {} }"),
7160("0023", Captured | Success, "event System.Action E { add {} remove { p1 = 0; } }"),
7161("0024", Captured | Success, "int this[int x] { get { return p1; } }"),
7162("0025", Captured | Success, "int this[int x] { set { p1 = 0; } }"),
7163("0026", Captured | Success, "int this[int x] { set {} get { return p1; } }"),
7164("0027", Captured | Success, "int this[int x] { get => 0; set { p1 = 0; } }"),
7165("0028", Captured | Success, "~C1() { p1 = 0; }"),
7374("1401", Success | Shadows, "public System.Func<int> F = (() => p1);"),
7375("1402", Success | Shadows, "public System.Func<System.Func<int>> F = (() => (System.Func<int>)(() => p1));"),
7376("1403", Success | Shadows, "public System.Func<int> F = () => { return local(); int local() => p1; };"),
7377("1404", Success | Shadows, "public System.Func<int> P {get;} = (() => p1);"),
7378("1405", Success | Shadows, "public System.Func<System.Func<int>> P {get;} = (() => (System.Func<int>)(() => p1));"),
7379("1406", Success | Shadows, "public System.Func<int> P {get;} = () => { return local(); int local() => p1; };"),
7380("1407", Success | Shadows, "public event System.Func<System.Func<int>> E = (() => (System.Func<int>)(() => p1));"),
7381("1408", Success | Shadows, "public event System.Func<int> E = () => { return local(); int local() => p1; };"),
7389("1502", Captured | Success, "public int P => p1;"),
7399("1517", Captured | Success, "void M() => p1 = 0;"),
7400("1518", Captured | Success, "int P { get => p1; }"),
7401("1519", Captured | Success, "int P { set => p1 = 0; }"),
7402("1520", Captured | Success, "int P { set {} get => p1; }"),
7403("1521", Captured | Success, "int P { get => 0; set => p1 = 0; }"),
7404("1524", Captured | Success, "int this[int x] { get => p1; }"),
7405("1525", Captured | Success, "int this[int x] { set => p1 = 0; }"),
7406("1526", Captured | Success, "int this[int x] { set {} get => p1; }"),
7407("1527", Captured | Success, "int this[int x] { get => 0; set => p1 = 0; }"),
7408("1528", Captured | Success, "~C1() => p1 = 0;"),
7532("2101", Success | Shadows, "public System.Action F = () => { [Attr1(nameof(p1))] void local(){} local(); };"),
7533("2102", Success | Shadows, "public System.Action P {get;} = () => { [Attr1(nameof(p1))] void local(){} local(); };"),
7534("2103", Success | Shadows, "public event System.Action E = () => { [Attr1(nameof(p1))] void local(){} local(); };"),
7594("2301", Success | Shadows, "public System.Action F = () => { void local(string x = nameof(p1)){} local(); };"),
7595("2302", Success | Shadows, "public System.Action P {get;} = () => { void local(string x = nameof(p1)){} local(); };"),
7596("2303", Success | Shadows, "public event System.Action E = () => { void local(string x = nameof(p1)){} local(); };"),
7625("2401", Success | Shadows, "public int F = nameof(p1).Length;"),
7626("2402", Success | Shadows, "public int P {get;} = nameof(p1).Length;"),
7627("2403", Success | Shadows, "public event System.Action E = () => nameof(p1).Length.ToString();"),
20041("0101", Success, "(ref int p1) { void M1() { nameof(p1).ToString(); } }", null),
20042("0102", Success, "(ref int p1) { void M1() { local(); void local() { nameof(p1).ToString(); } } }", null),
20043("0103", Success, "(ref int p1) { void M1() { local1(); void local1() { local2(); void local2() {nameof(p1).ToString(); } } } }", null),
20044("0104", Success, "(in int p1) { void M1() { nameof(p1).ToString(); } }", null),
20045("0105", Success, "(in int p1) { void M1() { local(); void local() { nameof(p1).ToString(); } } }", null),
20046("0106", Success, "(in int p1) { void M1() { local1(); void local1() { local2(); void local2() { nameof(p1).ToString(); } } } }", null),
20047("0107", Success, "(out int p1) { int x = p1 = 0; void M1() { nameof(p1).ToString(); } }", null),
20048("0108", Success, "(out int p1) { int x = p1 = 0; void M1() { local(); void local() { nameof(p1).ToString(); } } }", null),
20049("0109", Success, "(out int p1) { int x = p1 = 0; void M1() { local1(); void local1() { local2(); void local2() { nameof(p1).ToString(); } } } }", null),
20050("0110", Success, "(S1 p1) { void M1() { nameof(p1).ToString(); } } ref struct S1 { public void M(){} }", null),
20051("0111", Success, "(S1 p1) { void M1() { local(); void local() { nameof(p1).ToString(); } } } ref struct S1{ public void M(){} }", null),
20052("0112", Success, "(S1 p1) { void M1() { local1(); void local1() { local2(); void local2() { nameof(p1).ToString(); } } } } ref struct S1{ public void M(){} }", null),
20067("0301", Success, "(ref int p1) { System.Action F = () => nameof(p1).ToString(); }", null),
20068("0302", Success, "(ref int p1) { System.Action P { get; } = () => nameof(p1).ToString(); }", null),
20069("0303", Success, "(ref int p1) { public event System.Action E = () => nameof(p1).ToString(); }", null),
20070("0304", Success, "(in int p1) { System.Action F = () => nameof(p1).ToString(); }", null),
20071("0305", Success, "(in int p1) { System.Action P { get; } = () => nameof(p1).ToString(); }", null),
20072("0306", Success, "(in int p1) { public event System.Action E = () => nameof(p1).ToString(); }", null),
20073("0307", Success, "(out int p1) { System.Action F = (p1 = 0) == 0 ? () => nameof(p1).ToString() : null; }", null),
20074("0308", Success, "(out int p1) { System.Action P { get; } = (p1 = 0) == 0 ? () => nameof(p1).ToString() : null; }", null),
20075("0309", Success, "(out int p1) { public event System.Action E = (p1 = 0) == 0 ? () => nameof(p1).ToString() : null; }", null),
20076("0310", Success, "(S1 p1) { System.Action F = () => nameof(p1).ToString(); } ref struct S1{ public void M(){} }", null),
20077("0311", Success, "(S1 p1) { System.Action P { get; } = () => nameof(p1).ToString(); } ref struct S1{ public void M(){} }", null),
20078("0312", Success, "(S1 p1) { public event System.Action E = () => nameof(p1).ToString(); } ref struct S1{ public void M(){} }", null),
20088("1011", Success, "(ref int p1) : Base(() => nameof(p1).ToString()); class Base { public Base(System.Action x) {} }", null),
20089("1012", Success, "(in int p1) : Base(() => nameof(p1).ToString()); class Base { public Base(System.Action x) {} }", null),
20090("1013", Success, "(out int p1) : Base(p1 = 0, () => nameof(p1).ToString()); class Base { public Base(int y, System.Action x) {} }", null),
20091("1014", Success, "(S1 p1) : Base(() => nameof(p1).ToString()); ref struct S1{ public void M(){} } class Base { public Base(System.Action x) {} }", null),