Merge tag 'l10n-2.27.0-rnd2' of git://github.com/git-l10n/git-po
[git] / t / t4018 / rust-trait
1 unsafe trait RIGHT<T> {
2     fn len(&self) -> u32;
3     fn ChangeMe(&self, n: u32) -> T;
4     fn iter<F>(&self, f: F) where F: Fn(T);
5 }