Created
December 6, 2023 13:51
-
-
Save yanok/42f01c1cbdb5ac35643c1cd34d791b0d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class C<T> {} | |
T? f<T>(C<T> c) => null; | |
int? g(C<int?> c) => f(c); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment