Skip to content

Instantly share code, notes, and snippets.

@jskeet
Created August 29, 2024 08:34
Show Gist options
  • Save jskeet/f2fc53c85c66aa92120929835ca1ffdc to your computer and use it in GitHub Desktop.
Save jskeet/f2fc53c85c66aa92120929835ca1ffdc to your computer and use it in GitHub Desktop.
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