mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
246 B
Rust
12 lines
246 B
Rust
// run-pass
|
|
// aux-build:re_rebalance_coherence_lib.rs
|
|
|
|
extern crate re_rebalance_coherence_lib as lib;
|
|
use lib::*;
|
|
|
|
struct Oracle;
|
|
impl Backend for Oracle {}
|
|
impl<'a, T:'a, Tab> QueryFragment<Oracle> for BatchInsert<'a, T, Tab> {}
|
|
|
|
fn main() {}
|