You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's create 2 packages, let's call them One and Two.
Let Two contain a single alias, Alias :: u64
Import Two from One
See error in the following code snippet:
package One
import two "../Two"
Alias :: u64
main :: proc() {
x : two.Alias = 4// Appears as two.Alias
y := make([]int, x, context.temp_allocator) // `y` has no hover tooltip
a : Alias = 4// Appears as u64
b := make([]int, a, context.temp_allocator) // b has hover tooltip
}