Avatar
Avatar
nanasi
@swift-5.7.3 actor Foo {     @discardableResult     func bar() -> Int { 1 } } Task {     await Foo().bar()     return }
stderr:<stdin>:2:1: warning: non-breaking space (U+00A0) used instead of regular space     @discardableResult <stdin>:2:4: warning: non-breaking space (U+00A0) used instead of regular space     @discardableResult <stdin>:3:1: warning: non-breaking space (U+00A0) used instead of regular space     func bar() -> Int { 1 } <stdin>:3:4: warning: non-breaking space (U+00A0) used instead of regular space     func bar() -> Int { 1 } <stdin>:7:1: warning: non-breaking space (U+00A0) used instead of regular space     await Foo().bar() <stdin>:7:4: warning: non-breaking space (U+00A0) used instead of regular space     await Foo().bar() <stdin>:8:1: warning: non-breaking space (U+00A0) used instead of regular space     return <stdin>:8:4: warning: non-breaking space (U+00A0) used instead of regular space     return