We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents add012c + 4cf34ab commit 5561f1aCopy full SHA for 5561f1a
test/Interop/Cxx/stdlib/use-std-optional.swift
@@ -14,11 +14,9 @@ StdOptionalTestSuite.test("pointee") {
14
let pointee = nonNilOpt.pointee
15
expectEqual(123, pointee)
16
17
-#if !os(Linux) // crashes on Ubuntu 18.04 (rdar://113414160)
18
var modifiedOpt = getNilOptional()
19
modifiedOpt.pointee = 777
20
expectEqual(777, modifiedOpt.pointee)
21
-#endif
22
}
23
24
StdOptionalTestSuite.test("std::optional => Swift.Optional") {
0 commit comments