mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 11:50:45 +00:00
12 lines
248 B
Rust
12 lines
248 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() {}
|