We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description:
Repro Steps:
open System type Attr([<ParamArray>] x: obj[]) = inherit Attribute() [<Attr(null)>] let f () = ()
Expected: Compilation successful.
Actual: Compilation error.
error FS0193: internal error: not a nominal type
Version: I tried VS 2013 only.
Link: compilation result on ideone
Workaround: use type annotation.
open System type Attr([<ParamArray>] x: obj[]) = inherit Attribute() [<Attr(null: string)>] let f () = ()
The text was updated successfully, but these errors were encountered:
cccf5b9
No branches or pull requests
Description:
Repro Steps:
Expected:
Compilation successful.
Actual:
Compilation error.
Version:
I tried VS 2013 only.
Link:
compilation result on ideone
Workaround:
use type annotation.
The text was updated successfully, but these errors were encountered: