Created
August 29, 2024 08:34
-
-
Save jskeet/f2fc53c85c66aa92120929835ca1ffdc to your computer and use it in GitHub Desktop.
This file contains 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
namespace Other | |
{ | |
public class List<T> | |
{ | |
} | |
} | |
namespace Test | |
{ | |
using Other; | |
using System.Collections.Generic; | |
public class Foo | |
{ | |
public void M() | |
{ | |
List<string> x = null; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment