8 references to CheckForEachCollectionConvertedType
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (8)
Compilation\SemanticModelGetSemanticInfoTests.cs (8)
6261CheckForEachCollectionConvertedType("int[]", "System.Int32[]", "System.Collections.IEnumerable"); 6262CheckForEachCollectionConvertedType("int[,]", "System.Int32[,]", "System.Collections.IEnumerable"); 6265CheckForEachCollectionConvertedType("string", "System.String", "System.String"); 6268CheckForEachCollectionConvertedType("dynamic", "dynamic", "System.Collections.IEnumerable"); 6271CheckForEachCollectionConvertedType("System.Collections.Generic.List<int>", "System.Collections.Generic.List<System.Int32>", "System.Collections.Generic.List<System.Int32>"); 6274CheckForEachCollectionConvertedType("Enumerable", "Enumerable", "System.Collections.IEnumerable"); // helper method knows definition of this type 6277CheckForEachCollectionConvertedType("System.Collections.Generic.IEnumerable<int>", "System.Collections.Generic.IEnumerable<System.Int32>", "System.Collections.Generic.IEnumerable<System.Int32>"); 6280CheckForEachCollectionConvertedType("NotAType", "NotAType", "NotAType"); // name not in scope