mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
C#: fix inconsistent type/constructor name
The code sample for the self-assignment query help had a different name for the class and it's (intended) constructor, so was invalid.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
class SelfAssignment
|
||||
{
|
||||
private int i;
|
||||
public TestableTest(int i)
|
||||
public SelfAssignment(int i)
|
||||
{
|
||||
i = i;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user