Skip to content

Work around flaky test by moving code around #8074

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import CoreGraphics

func use<T>(_ t: T) {}

public class MyClass {
// CGImage is consulted through the external info provider.
// This field is here to test that LLDB correctly calculates
Expand All @@ -8,7 +10,11 @@ public class MyClass {
public var unused: CGImage? = nil
public var size: CGSize? = nil
}
let object = MyClass()
object.size = CGSize(width:10, height:20)
print(1) // Set breakpoint here.
func f() {
let object = MyClass()
object.size = CGSize(width:10, height:20)
use(object)
print("Set breakpoint here.")
}

f()