File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -63,11 +63,13 @@ type BasicProvider (config : TypeProviderConfig) as this =
6363 Helper.C() .InstanceDoNothingOneArg( 3 )
6464 Helper.C() .InstanceDoNothingTwoArg( Helper.C(), 3 )
6565 Helper.G< int>. DoNothing()
66- Helper.G< int>. DoNothingGeneric( 3 )
66+ // These do not seem to compile correctly when used in provided expressions:
67+ //Helper.G<int>.DoNothingGeneric(3)
6768 Helper.G< int>. DoNothingOneArg( 3 )
6869 Helper.G< int>. DoNothingTwoArg( Helper.C(), 3 )
6970 Helper.G< int>() .InstanceDoNothing()
70- Helper.G< int>() .InstanceDoNothingGeneric( 3 )
71+ // These do not seem to compile correctly when used in provided expressions:
72+ //Helper.G<int>().InstanceDoNothingGeneric(3)
7173 Helper.G< int>() .InstanceDoNothingOneArg( 3 )
7274 Helper.G< int>() .InstanceDoNothingTwoArg( Helper.C(), 3 ) @@>)
7375
You can’t perform that action at this time.
0 commit comments