#![allow(panics)] // aux-build:frame-support.rs extern crate frame_support; use frame_support::{ storage::{types::map::StorageMap as Bar}, hash::Twox64Concat, Identity, }; /// # Security /// /// Twox64Concat is allowed because this is a test pub type Foo = Bar; pub type Foo2 = Bar; fn main() {}