package d0.w.i.a; import kotlin.coroutines.Continuation; import kotlin.coroutines.CoroutineContext; /* compiled from: ContinuationImpl.kt */ /* loaded from: classes3.dex */ public final class c implements Continuation { public static final c j = new c(); @Override // kotlin.coroutines.Continuation public CoroutineContext getContext() { throw new IllegalStateException("This continuation is already complete".toString()); } @Override // kotlin.coroutines.Continuation public void resumeWith(Object obj) { throw new IllegalStateException("This continuation is already complete".toString()); } public String toString() { return "This continuation is already complete"; } }