You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Provide the steps required to reproduce the problem:
moduleTest =typeConfiguration={
Parameters :string list}moduleConfiguration =typeParameters= Parameters ofintlistletecho(value :Test.Configuration.Parameters)=match value with| Test.Configuration.Parameters i -> i
Expected behavior
Should not confuse the types
Actual behavior
Type confusion is occuring
Known workarounds
Changing either name of the record property or the DUs case fix the issue.
Using an alias, for accessing the DUs:
moduleTest =typeConfiguration={// Changing this property name fix the issue
Parameters :string list }moduleConfiguration =typeParameters= Parameters ofintlisttypeP= Test.Configuration.Parameters
letecho(value :Test.Configuration.Parameters)=match value with| P.Parameters i -> i
Related information
Provide any related information (optional):
Operating system: Windows_NT
Runtime: netcore
Dotnet version: 9.0.103
VSCode: 1.97.2
The text was updated successfully, but these errors were encountered:
Hello
Repro steps
Provide the steps required to reproduce the problem:
Expected behavior
Should not confuse the types
Actual behavior
Type confusion is occuring
Known workarounds
Changing either name of the record property or the DUs case fix the issue.
Using an alias, for accessing the DUs:
Related information
Provide any related information (optional):
The text was updated successfully, but these errors were encountered: