Skip to content
New issue

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

extern declaration inside type declaration is converted to let binding #1214

Closed
auduchinok opened this issue Nov 3, 2020 · 1 comment
Closed

Comments

@auduchinok
Copy link
Contributor

Issue created from fantomas-online

Code

type T() =
  [<DllImport("kernel32.dll")>]
  extern UIntPtr private GetProcessHeap()

Result

type T() =
    [<DllImport("kernel32.dll")>]
    let GetProcessHeap : UIntPtr =
        failwith "extern was not given a DllImport attribute"
@nojaf
Copy link
Contributor

nojaf commented Dec 5, 2022

This is available in the 5.1 series.

@nojaf nojaf closed this as completed Dec 5, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants