diff --git a/eng/Build.ps1 b/eng/Build.ps1 index 1d99378357d..43dfa6bc6b1 100644 --- a/eng/Build.ps1 +++ b/eng/Build.ps1 @@ -553,7 +553,7 @@ try { # Collect output from background jobs Wait-job $bgJob | out-null - Receive-Job $bgJob + Receive-Job $bgJob } if ($testFSharpQA) { diff --git a/tests/fsharp/Compiler/Language/ByrefTests.fs b/tests/fsharp/Compiler/Language/ByrefTests.fs index 696b439112f..548a28addcd 100644 --- a/tests/fsharp/Compiler/Language/ByrefTests.fs +++ b/tests/fsharp/Compiler/Language/ByrefTests.fs @@ -266,7 +266,8 @@ let test () = (FSharpDiagnosticSeverity.Error, 256, (6, 13, 6, 16), "A value must be mutable in order to mutate the contents or take the address of a value type, e.g. 'let mutable x = ...'") |] - [] + [] + [] let ``Returning an 'inref<_>' from a property should emit System.Runtime.CompilerServices.IsReadOnlyAttribute on the return type of the signature`` () = let src = """ @@ -297,6 +298,7 @@ type C() = |> ignore [] + [] let ``Returning an 'inref<_>' from a generic method should emit System.Runtime.CompilerServices.IsReadOnlyAttribute on the return type of the signature`` () = let src = """ @@ -319,6 +321,7 @@ type C<'T>() = |> ignore [] + [] let ``Returning an 'inref<_>' from an abstract generic method should emit System.Runtime.CompilerServices.IsReadOnlyAttribute on the return type of the signature`` () = let src = """ @@ -342,6 +345,7 @@ type C<'T>() = |> ignore [] + [] let ``Returning an 'inref<_>' from an abstract property should emit System.Runtime.CompilerServices.IsReadOnlyAttribute on the return type of the signature`` () = let src = """