I have this extension function ```internal inline...
# community-support
j
I have this extension function
Copy code
internal inline fun <reified T> Project.property(noinline block: Project.() -> T): Property<T> =
    objects.property<T>().convention(project.provider { block(this) })
But I am getting a crash
Copy code
inline fun property(): compile avoidance is not supported with public inline functions
This is only happening with Gradle TestKit. Testing it in included builds doesn't crash. Is there any workaround?