mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
11 lines
218 B
C#
11 lines
218 B
C#
using System.Collections.Generic;
|
|
|
|
class AbstractToConcreteCollection
|
|
{
|
|
void M(IEnumerable<string> strings)
|
|
{
|
|
var list = (List<string>) strings; // BAD
|
|
var o = (object) strings; // GOOD
|
|
}
|
|
}
|