mirror of
https://github.com/github/codeql.git
synced 2026-04-29 10:45:15 +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>`.