I do all kinds of tech things. Here you'll find: rants, ops/devops, web, iOS, microcontrollers, electronics, food, beer […]
🌉 bridged from ⁂ https://scoat.es/@sean, follow @ap.brid.gy to interact
There was definitely a more stable era sometime between when we mostly stopped running our own servers and… a month ago, though.
There was definitely a more stable era sometime between when we mostly stopped running our own servers and… a month ago, though.
https://github.com/swiftlang/swift/issues/85377
https://github.com/swiftlang/swift/issues/85377
```swift
struct NoCrashy: ~Copyable {
let record: Bool
init?() {
self.record = true
guard false else { return nil }
}
}
```
```swift
struct Crashy: ~Copyable {
let record: Bool
init?() {
guard false else { return nil }
// also happens if this throws […]
```swift
struct NoCrashy: ~Copyable {
let record: Bool
init?() {
self.record = true
guard false else { return nil }
}
}
```
```swift
struct Crashy: ~Copyable {
let record: Bool
init?() {
guard false else { return nil }
// also happens if this throws […]
Just scored a good one.
❯ swiftly run swiftc Crashy.swift 2>&1 \
| grep 'and include the crash backtrace' \
&& git commit -m"golf" Crashy.swift
Please submit a bug report (https://swift.org/contributing/#reporting-bugs) and include the crash backtrace.
[main 7e68cdd] golf […]
Just scored a good one.
❯ swiftly run swiftc Crashy.swift 2>&1 \
| grep 'and include the crash backtrace' \
&& git commit -m"golf" Crashy.swift
Please submit a bug report (https://swift.org/contributing/#reporting-bugs) and include the crash backtrace.
[main 7e68cdd] golf […]