Skip to content

Commit

Permalink
Fix ConstantProjection's SourceType and ReturnType (#371)
Browse files Browse the repository at this point in the history
  • Loading branch information
mslukebo authored Oct 16, 2024
1 parent 774b642 commit 93e6e48
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2198,12 +2198,12 @@ public TResult this[T value]

public Type SourceType
{
get { return typeof(int); }
get { return typeof(T); }
}

public Type ResultType
{
get { return typeof(T); }
get { return typeof(TResult); }
}
}

Expand Down

0 comments on commit 93e6e48

Please sign in to comment.