From df1087234b3fecd9a78ae5cacab7efc3eba94f6d Mon Sep 17 00:00:00 2001 From: Adrian Prantl Date: Thu, 22 Oct 2020 11:14:36 -0700 Subject: [PATCH] Remove print statement from test that resulted in a non-deterministic output stream. Fixes [SR-13754], rdar://problem/70531607 --- lldb/test/Shell/SwiftREPL/Inputs/A.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/lldb/test/Shell/SwiftREPL/Inputs/A.swift b/lldb/test/Shell/SwiftREPL/Inputs/A.swift index 887eb06b3efb5..e2f8d0920a868 100644 --- a/lldb/test/Shell/SwiftREPL/Inputs/A.swift +++ b/lldb/test/Shell/SwiftREPL/Inputs/A.swift @@ -1,6 +1,5 @@ public class Foo { public static func foo() -> String { - print("A") return "A" } }