Files
codeql/csharp/ql/test/library-tests/conversion
Tom Hvitved 3da438bb84 C#: Handle unbound types in conversion library
A constructed type, `C<T>`, where `T` is the type parameter of `C`, is represented
in the database as the corresponding unbound generict type `C<>`. Consequently, the
type conversion library, which only considers `ConstructedType`s, does not handle
all implicit conversions. For example, in

```
interface I<in T1, T2> where T1 : C
```

there should be an implicit conversion from `I<C, T2>` to `I<T1, T2>` (=`I<>`).
2019-09-25 16:24:38 +02:00
..
2019-06-17 20:07:54 +02:00
2018-12-20 10:19:59 +01:00
2018-12-20 10:19:59 +01:00
2018-12-20 10:19:59 +01:00
2019-08-30 11:47:43 +01:00