#![allow(unused)]
use crate::r#type::common::*;
pub mod section_0 {
use crate::Spanned;
use crate::parser::Span;
use crate::r#type::common::*;
use serde::Serialize;
#[derive(Debug, Clone, PartialEq, Serialize)]
pub enum Type {
B32, B64, }
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct BfiType {
pub type_: Type, pub f: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub d: GeneralOperand, pub span: Span,
}
}
pub use section_0::BfiType;
pub use section_0::Type as Type0;