Don't use back-quotes in diagnostics

This commit is contained in:
Slava Pestov
2021-09-15 14:29:36 -04:00
parent a723e6d4c2
commit c8f3476f19
19 changed files with 31 additions and 31 deletions

View File

@@ -7,7 +7,7 @@ actor MyActor { }
class MyActorSubclass1: MyActor { }
// expected-error@-1{{actor types do not support inheritance}}
// expected-error@-2{{type 'MyActorSubclass1' cannot conform to the 'Actor' protocol}}
// expected-error@-3{{non-final class 'MyActorSubclass1' cannot conform to `Sendable`; use `@unchecked Sendable`}}
// expected-error@-3{{non-final class 'MyActorSubclass1' cannot conform to 'Sendable'; use '@unchecked Sendable'}}
actor MyActorSubclass2: MyActor { } // expected-error{{actor types do not support inheritance}}