Skip to content

Instantly share code, notes, and snippets.

@rjmholt
Created February 4, 2017 15:23
Show Gist options
  • Save rjmholt/c5037cb60495d16a4b71e9f0a86dd479 to your computer and use it in GitHub Desktop.
Save rjmholt/c5037cb60495d16a4b71e9f0a86dd479 to your computer and use it in GitHub Desktop.
public interface IN<in U> {}
public interface IC<X> : IN<IN<IC<IC<X>>>> {}
class Program
{
static void Main()
{
IC<double> bar = null;
IN<IC<string>> foo = bar;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment