#![allow(unused_variables)]
#[cfg(feature = "ok")]
pub fn adjoin() {
#[derive(Clone)]
struct Struct(String);
let instance = Struct(String::from("Hello"));
let clone_instance = instance.clone();
let copy_instance = instance;
let use_copy_instance = copy_instance;
}
#[cfg(feature = "err_04")]
pub fn adjoin() {
#[derive(Clone, Copy)]
struct Struct(String);
let instance = Struct(String::from("Hello"));
let clone_instance = instance.clone();
let copy_instance = instance;
let use_instance = instance;
}
#[cfg(feature = "err_05")]
pub fn adjoin() {
#[derive(Clone)]
struct Struct(String);
let instance = Struct(String::from("Hello"));
let clone_instance = instance.clone();
let copy_instance = instance;
let use_instance = instance;
}
#[cfg(feature = "err_06")]
pub fn adjoin() {
#[derive(Copy)]
struct Struct(String);
let instance = Struct(String::from("Hello"));
let clone_instance = instance.clone();
let copy_instance = instance;
let use_instance = instance;
}
#[cfg(all(
not(feature = "ok"),
not(feature = "err_04"),
not(feature = "err_05"),
not(feature = "err_06"),
))]
pub fn adjoin() {
use aide::*;
hello();
}