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 7a38f17 + ff5b698 commit c7e3dc0Copy full SHA for c7e3dc0
test/Interop/Cxx/stdlib/use-std-optional.swift
@@ -13,9 +13,11 @@ StdOptionalTestSuite.test("pointee") {
13
let pointee = nonNilOpt.pointee
14
expectEqual(123, pointee)
15
16
+#if !os(Linux) // crashes on Ubuntu 18.04 (rdar://113414160)
17
var modifiedOpt = getNilOptional()
18
modifiedOpt.pointee = 777
19
expectEqual(777, modifiedOpt.pointee)
20
+#endif
21
}
22
23
StdOptionalTestSuite.test("std::optional => Swift.Optional") {
0 commit comments