Created
November 8, 2022 00:24
-
-
Save michaelmcguire/b5430df75989ae9d530f0193332610cf to your computer and use it in GitHub Desktop.
FB11765100: Crash lldb in Xcode 14.1 Playground
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
import PlaygroundSupport | |
/* lldb Crash: | |
The LLDB RPC server has crashed. The crash log is located in ~/Library/Logs/DiagnosticsReports and has a prefix 'lldb-rpc-server'. Please file a bug and attach the most recent crash log. | |
*/ | |
let imageContent = HStack { | |
Image(systemName: "ellipsis").resizable().aspectRatio(contentMode: .fit) | |
} | |
PlaygroundPage.current.setLiveView(imageContent.frame(width: 500, height: 500)) | |
/* No Crash */ | |
PlaygroundPage.current.setLiveView( | |
HStack { | |
Image(systemName: "ellipsis").resizable().aspectRatio(contentMode: .fit) | |
}.frame(width: 500, height: 500) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment