Lines Matching refs:non
69 #### Rule 2: A non-Sendable class can inherit only from another non-Sendable class.
71 If a non-Sendable class inherits from a Sendable class, a compilation error is reported.
77 class B extends A {} // Compilation error: A non-Sendable class cannot inherit from a Sendable c…
80 Affected scenario: If a non-Sendable class inherits from a Sendable class, the compilation fails af…
86 …iation. If the template type of the Sendable class in the generic class is non-Sendable, an error …
111 …ilation error: The template type of the Sendable class in the generic class cannot be non-Sendable.
114 …ted. 2. If the template type of the Sendable class in the generic class is non-Sendable, the compi…
155 #### Rule 6: Do not use as to forcibly convert the non-Sendable type to the Sendable type.
157 When **as** is used to forcibly convert the non-Sendable type to the Sendable type, a compilation e…
166 …a as B; // Compilation error: Do not use as to forcibly convert the non-Sendable type to the Se…
170 Affected scenario: A non-Sendable variable after forcible conversion cannot be compiled.