We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 057a420 commit ad55744Copy full SHA for ad55744
csharp/ql/test/utils/modelgenerator/dataflow/Summaries.cs
@@ -544,4 +544,22 @@ public override string Id(string x)
544
return x;
545
}
546
547
+
548
+ public interface IPublic3
549
+ {
550
+ string Prop { get; }
551
+ }
552
553
+ public abstract class D : IPublic3
554
555
+ public abstract string Prop { get; }
556
557
558
+ public class DImpl : D
559
560
+ private string tainted;
561
562
+ // summary=Models;Inheritance+IPublic3;true;get_Prop;();;Argument[this];ReturnValue;taint;df-generated
563
+ public override string Prop { get { return tainted; } }
564
565
0 commit comments