blob: b494b701a2ffb7267900caa1425cbe5d76f95c05 [file]
//@ compile-flags: --cfg extension
#[cfg(extension)]
pub fn compute() {}
pub struct Type;
impl Type {
#[cfg(extension)]
pub fn transform(self) -> Self { self }
}