---
source: einstellung_derive/src/test.rs
expression: formatted
---
/// --- input ---
#[derive(Config)]
struct AppConfig {
#[config(subconfig)]
db: UnconfiguredDatabase,
}
struct UnconfiguredDatabase {
url: String,
}
/// --- output ---
::core::compile_error! {
"unexpected token"
}