Sha256: a1964fa136080cc354479ff55b8428e5fa79305681fb2475cc37d6071cd64112
Contents?: true
Size: 272 Bytes
Versions: 8
Compression:
Stored size: 272 Bytes
Contents
// SPDX-License-Identifier: Apache-2.0 OR MIT use pin_project_lite::pin_project; pin_project! { //~ ERROR E0119 struct Foo<T, U> { #[pin] future: T, field: U, } } impl<T, U> Drop for Foo<T, U> { fn drop(&mut self) {} } fn main() {}
Version data entries
8 entries across 8 versions & 1 rubygems