Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eng/Build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ try {

# Collect output from background jobs
Wait-job $bgJob | out-null
Receive-Job $bgJob
Receive-Job $bgJob
}

if ($testFSharpQA) {
Expand Down
6 changes: 5 additions & 1 deletion tests/fsharp/Compiler/Language/ByrefTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ...'")
|]

[<Test>]
[<Test()>]
[<Ignore("Waiting for test to be aligned", Until = "2023-04-01 12:00:00Z")>]
let ``Returning an 'inref<_>' from a property should emit System.Runtime.CompilerServices.IsReadOnlyAttribute on the return type of the signature`` () =
let src =
"""
Expand Down Expand Up @@ -297,6 +298,7 @@ type C() =
|> ignore

[<Test>]
[<Ignore("Waiting for test to be aligned", Until = "2023-04-01 12:00:00Z")>]
let ``Returning an 'inref<_>' from a generic method should emit System.Runtime.CompilerServices.IsReadOnlyAttribute on the return type of the signature`` () =
let src =
"""
Expand All @@ -319,6 +321,7 @@ type C<'T>() =
|> ignore

[<Test>]
[<Ignore("Waiting for test to be aligned", Until = "2023-04-01 12:00:00Z")>]
let ``Returning an 'inref<_>' from an abstract generic method should emit System.Runtime.CompilerServices.IsReadOnlyAttribute on the return type of the signature`` () =
let src =
"""
Expand All @@ -342,6 +345,7 @@ type C<'T>() =
|> ignore

[<Test>]
[<Ignore("Waiting for test to be aligned", Until = "2023-04-01 12:00:00Z")>]
let ``Returning an 'inref<_>' from an abstract property should emit System.Runtime.CompilerServices.IsReadOnlyAttribute on the return type of the signature`` () =
let src =
"""
Expand Down