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 b944ab8 + 5e4e83e commit dc43a44Copy full SHA for dc43a44
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