<@U2JKKPMEE> noticed an edge case bug with generat...
# koin-contributors
a
@arnaud.giuliani noticed an edge case bug with generating nested class type bindings
Copy code
interface Foo {
	
	@Single
	class Bar : Foo {
	
	}
}
Results in:
Copy code
single() { _ -> org.koin.example.Bar() } bind(org.koin.example.Foo::class)
But the correct format would be:
Copy code
single() { _ -> org.koin.example.Foo.Bar() } bind(org.koin.example.Foo::class)
Note the parent class in the fully qualified path for the constructor
a
yeah, I've seen something around that 👍