miegir
miegir
This is the correct F# code (surprisingly): ``` fsharp type A = new() = let t = () { inherit obj() } then t ``` After formatting, keyword `then` is...
Generated source files (.fs) from both fslex and fsyacc contain line directives. Inserted directives are good when referencing external files (such as source .fsl/.fsy) but are incorrect when referencing the...
Now the code block surrounded by `%{` and `%}` is output before the token type declaration in .fs file. This prevents error handler from using token type directly and requires...
Steps to reproduce: 1. In an empty folder, create a new console application: `dotnet ef console` 2. Replace Program.cs with the following code: ``` C# using Microsoft.EntityFrameworkCore; Console.WriteLine("Hello world!"); public...