I don't know if this error is directly related to ...
# coroutines
b
I don't know if this error is directly related to coroutines but started when I implement it... One problem here, I have an android app and I've implemented coroutines in one part of it, the problem is that is showing this error when I try to build:
Copy code
error: cannot access HttpResult
    kotlin.coroutines.Continuation<? super HttpResult<MyEntity>> p2);

bad class file: HttpResult.class
undeclared type variable: R
    Please remove or make sure it appears in the correct subdirectory of the classpath.
I don't know why but byte code could not find my HttResult class (it's a inline class), I don't know if it's a dependency problem, because I'm importing kotlin(v 1.3.0) and coroutines(v 1.0.0) dependencies in two different modules, but I've already tried to change the versions and dependencies but I could not fix it. Do you guys already got a problem like this before?
The problem is, my class HttpResult is a inline class that has another inline class as constructor argument, I don't know what is the problem here, because I've created a test project and implemented the same solution and it was building.