mirror of
https://github.com/github/codeql.git
synced 2026-07-19 10:18:17 +02:00
This fixes a "Missing type parameter label" warning from the extractor
with
interface Foo<T>
class Bar<T>: Foo<T> { }
caused by the `: Foo<T>` being extracted before extracting the `T`
in `Bar<T>`.