We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The following compiles on stable but not beta:
use std::iter::Zip; fn test<'a, A, B>(iter: Zip<&'static A, &'static B>) -> Zip<&'a A, &'a B> { iter } fn main() {}