mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
15 lines
299 B
Markdown
15 lines
299 B
Markdown
lgtm,codescanning
|
|
* Implicit base constructor calls are now extracted. For example, in
|
|
```csharp
|
|
class Base
|
|
{
|
|
public Base() { }
|
|
}
|
|
|
|
class Sub : Base
|
|
{
|
|
public Sub() { }
|
|
}
|
|
```
|
|
there is an implicit call to the `Base` constructor from the `Sub` constructor.
|