]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4018/rust-trait
The seventh batch
[thirdparty/git.git] / t / t4018 / rust-trait
CommitLineData
d74e7860
MAL
1unsafe 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}