]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/re-rebalance-coherence.rs
Merge commit 'ea199bacef07213dbe008841b89c450e3bf0c638' into rustfmt-sync
[rust.git] / src / test / ui / coherence / re-rebalance-coherence.rs
1 // run-pass
2 // aux-build:re_rebalance_coherence_lib.rs
3
4 extern crate re_rebalance_coherence_lib as lib;
5 use lib::*;
6
7 struct Oracle;
8 impl Backend for Oracle {}
9 impl<'a, T:'a, Tab> QueryFragment<Oracle> for BatchInsert<'a, T, Tab> {}
10
11 fn main() {}