#![allow(dead_code)]
use crate::{
partitions::{
FileSymbols, LinkedSymbols, MergedSymbols, SymbolResolution, Symbols,
},
test_helpers::{DV, SI, TP},
};
type SymbolsPartition = Symbols<DV, SI, TP>;
type FileSymbolsPartition = FileSymbols<DV, SI, TP>;
type LinkedSymbolsPartition = LinkedSymbols<DV, SI, TP>;
type MergedSymbolsPartition = MergedSymbols<DV, SI, TP>;
type SymbolResolutionPartition = SymbolResolution<DV, SI, TP>;
laburnum::define_partitions! {
Test,
partitions = [],
index = [
Symbols,
FileSymbols,
LinkedSymbols,
MergedSymbols,
SymbolResolution,
],
}