[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0102-14.cs
blob6478f7540b43e7a464a72d905425ff250b1be7f9
1 // CS0102: The type `T' already contains a definition for `A'
2 // Line: 6
4 class T{
5 public string A { get { return "a"; } }
6 public string A (int a) { return "a"; }