From 2832271a0f50107ca20c4211507b6d3846b9d0b5 Mon Sep 17 00:00:00 2001 From: Felipe de Azevedo Piovezan Date: Mon, 8 Sep 2025 14:46:51 -0700 Subject: [PATCH] [lldb] Fix missing return in TestStepIntoObjCInteropInit Objective C constructors must return self. --- lldb/test/API/lang/swift/step_into_objc_interop_init/Foo.m | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/test/API/lang/swift/step_into_objc_interop_init/Foo.m b/lldb/test/API/lang/swift/step_into_objc_interop_init/Foo.m index 7d5252e9a4b41..408f8203ca119 100644 --- a/lldb/test/API/lang/swift/step_into_objc_interop_init/Foo.m +++ b/lldb/test/API/lang/swift/step_into_objc_interop_init/Foo.m @@ -3,6 +3,7 @@ @implementation Foo - (id)init { + return self; } - (id)initWithString:(nonnull NSString *)value {