Skip to content

Commit 20cb5da

Browse files
committed
C#: Add testcase for implicit set.
1 parent 262c28b commit 20cb5da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

csharp/ql/test/utils/model-generator/typebasedflow/TypeBasedSummaries.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ public class TypeBasedComplex<T> {
5050
public TypeBasedComplex<S> MapComplex<S>(Func<T, S> f) { throw null; }
5151

5252
public TypeBasedComplex<T> Return(Func<T, TypeBasedComplex<T>> f) { throw null; }
53-
// Examples still not working:
54-
// public void Set(int x, Func<int, T> f) { throw null;}
53+
54+
public void Set(int x, Func<int, T> f) { throw null;}
5555
}
5656

5757
// It is assumed that this is a collection with elements of type T.

0 commit comments

Comments
 (0)