DanielGavin / ols

Language server for Odin
MIT License
440 stars 68 forks source link

Missing pointer information in generic types #297

Closed ryuukk closed 14 hours ago

ryuukk commented 8 months ago

image

package test

AAA :: struct($T: typeid) {
    value: ^T,
}

main::proc() {

    ttt: AAA(int)
    ttt.
}

value should be displayed as: ^int

DanielGavin commented 14 hours ago

Fixed.