71 references to Success
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (71)
Semantics\PrimaryConstructorTests.cs (71)
7129("0001", Success | Shadows, "public int F = p1;"), 7130("0002", Success | Shadows, "public int P {get;} = p1;"), 7131("0003", Success | Shadows, "public event System.Action E = () => p1.ToString();"), 7144("0017", Captured | Success, "void M() { p1 = 0; }"), 7145("0018", Captured | Success, "int P { get { return p1; } }"), 7146("0019", Captured | Success, "int P { set { p1 = 0; } }"), 7147("0020", Captured | Success, "int P { set {} get { return p1; } }"), 7148("0021", Captured | Success, "int P { get => 0; set { p1 = 0; } }"), 7149("0022", Captured | Success, "event System.Action E { add { p1 = 0; } remove {} }"), 7150("0023", Captured | Success, "event System.Action E { add {} remove { p1 = 0; } }"), 7151("0024", Captured | Success, "int this[int x] { get { return p1; } }"), 7152("0025", Captured | Success, "int this[int x] { set { p1 = 0; } }"), 7153("0026", Captured | Success, "int this[int x] { set {} get { return p1; } }"), 7154("0027", Captured | Success, "int this[int x] { get => 0; set { p1 = 0; } }"), 7155("0028", Captured | Success, "~C1() { p1 = 0; }"), 7364("1401", Success | Shadows, "public System.Func<int> F = (() => p1);"), 7365("1402", Success | Shadows, "public System.Func<System.Func<int>> F = (() => (System.Func<int>)(() => p1));"), 7366("1403", Success | Shadows, "public System.Func<int> F = () => { return local(); int local() => p1; };"), 7367("1404", Success | Shadows, "public System.Func<int> P {get;} = (() => p1);"), 7368("1405", Success | Shadows, "public System.Func<System.Func<int>> P {get;} = (() => (System.Func<int>)(() => p1));"), 7369("1406", Success | Shadows, "public System.Func<int> P {get;} = () => { return local(); int local() => p1; };"), 7370("1407", Success | Shadows, "public event System.Func<System.Func<int>> E = (() => (System.Func<int>)(() => p1));"), 7371("1408", Success | Shadows, "public event System.Func<int> E = () => { return local(); int local() => p1; };"), 7379("1502", Captured | Success, "public int P => p1;"), 7389("1517", Captured | Success, "void M() => p1 = 0;"), 7390("1518", Captured | Success, "int P { get => p1; }"), 7391("1519", Captured | Success, "int P { set => p1 = 0; }"), 7392("1520", Captured | Success, "int P { set {} get => p1; }"), 7393("1521", Captured | Success, "int P { get => 0; set => p1 = 0; }"), 7394("1524", Captured | Success, "int this[int x] { get => p1; }"), 7395("1525", Captured | Success, "int this[int x] { set => p1 = 0; }"), 7396("1526", Captured | Success, "int this[int x] { set {} get => p1; }"), 7397("1527", Captured | Success, "int this[int x] { get => 0; set => p1 = 0; }"), 7398("1528", Captured | Success, "~C1() => p1 = 0;"), 7522("2101", Success | Shadows, "public System.Action F = () => { [Attr1(nameof(p1))] void local(){} local(); };"), 7523("2102", Success | Shadows, "public System.Action P {get;} = () => { [Attr1(nameof(p1))] void local(){} local(); };"), 7524("2103", Success | Shadows, "public event System.Action E = () => { [Attr1(nameof(p1))] void local(){} local(); };"), 7584("2301", Success | Shadows, "public System.Action F = () => { void local(string x = nameof(p1)){} local(); };"), 7585("2302", Success | Shadows, "public System.Action P {get;} = () => { void local(string x = nameof(p1)){} local(); };"), 7586("2303", Success | Shadows, "public event System.Action E = () => { void local(string x = nameof(p1)){} local(); };"), 7615("2401", Success | Shadows, "public int F = nameof(p1).Length;"), 7616("2402", Success | Shadows, "public int P {get;} = nameof(p1).Length;"), 7617("2403", Success | Shadows, "public event System.Action E = () => nameof(p1).Length.ToString();"), 20031("0101", Success, "(ref int p1) { void M1() { nameof(p1).ToString(); } }", null), 20032("0102", Success, "(ref int p1) { void M1() { local(); void local() { nameof(p1).ToString(); } } }", null), 20033("0103", Success, "(ref int p1) { void M1() { local1(); void local1() { local2(); void local2() {nameof(p1).ToString(); } } } }", null), 20034("0104", Success, "(in int p1) { void M1() { nameof(p1).ToString(); } }", null), 20035("0105", Success, "(in int p1) { void M1() { local(); void local() { nameof(p1).ToString(); } } }", null), 20036("0106", Success, "(in int p1) { void M1() { local1(); void local1() { local2(); void local2() { nameof(p1).ToString(); } } } }", null), 20037("0107", Success, "(out int p1) { int x = p1 = 0; void M1() { nameof(p1).ToString(); } }", null), 20038("0108", Success, "(out int p1) { int x = p1 = 0; void M1() { local(); void local() { nameof(p1).ToString(); } } }", null), 20039("0109", Success, "(out int p1) { int x = p1 = 0; void M1() { local1(); void local1() { local2(); void local2() { nameof(p1).ToString(); } } } }", null), 20040("0110", Success, "(S1 p1) { void M1() { nameof(p1).ToString(); } } ref struct S1 { public void M(){} }", null), 20041("0111", Success, "(S1 p1) { void M1() { local(); void local() { nameof(p1).ToString(); } } } ref struct S1{ public void M(){} }", null), 20042("0112", Success, "(S1 p1) { void M1() { local1(); void local1() { local2(); void local2() { nameof(p1).ToString(); } } } } ref struct S1{ public void M(){} }", null), 20057("0301", Success, "(ref int p1) { System.Action F = () => nameof(p1).ToString(); }", null), 20058("0302", Success, "(ref int p1) { System.Action P { get; } = () => nameof(p1).ToString(); }", null), 20059("0303", Success, "(ref int p1) { public event System.Action E = () => nameof(p1).ToString(); }", null), 20060("0304", Success, "(in int p1) { System.Action F = () => nameof(p1).ToString(); }", null), 20061("0305", Success, "(in int p1) { System.Action P { get; } = () => nameof(p1).ToString(); }", null), 20062("0306", Success, "(in int p1) { public event System.Action E = () => nameof(p1).ToString(); }", null), 20063("0307", Success, "(out int p1) { System.Action F = (p1 = 0) == 0 ? () => nameof(p1).ToString() : null; }", null), 20064("0308", Success, "(out int p1) { System.Action P { get; } = (p1 = 0) == 0 ? () => nameof(p1).ToString() : null; }", null), 20065("0309", Success, "(out int p1) { public event System.Action E = (p1 = 0) == 0 ? () => nameof(p1).ToString() : null; }", null), 20066("0310", Success, "(S1 p1) { System.Action F = () => nameof(p1).ToString(); } ref struct S1{ public void M(){} }", null), 20067("0311", Success, "(S1 p1) { System.Action P { get; } = () => nameof(p1).ToString(); } ref struct S1{ public void M(){} }", null), 20068("0312", Success, "(S1 p1) { public event System.Action E = () => nameof(p1).ToString(); } ref struct S1{ public void M(){} }", null), 20078("1011", Success, "(ref int p1) : Base(() => nameof(p1).ToString()); class Base { public Base(System.Action x) {} }", null), 20079("1012", Success, "(in int p1) : Base(() => nameof(p1).ToString()); class Base { public Base(System.Action x) {} }", null), 20080("1013", Success, "(out int p1) : Base(p1 = 0, () => nameof(p1).ToString()); class Base { public Base(int y, System.Action x) {} }", null), 20081("1014", Success, "(S1 p1) : Base(() => nameof(p1).ToString()); ref struct S1{ public void M(){} } class Base { public Base(System.Action x) {} }", null),