I'm trying to subclass "Path" (from the graphics l...
# android
m
I'm trying to subclass "Path" (from the graphics library). It can take a Path object as an initialiser, so I thought
Copy code
actual class MmPath actual constructor(testPath: MmPath?) : Path(testPath) {
should work, but I get a crash (segfault - A/libc: Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0 in tid 7837). What's the right way to do this?