I have an empty list and try to do it like the usual Native API
var list = new NativeLinkedList<int>(capacity: 10, Allocator.Temp);
var e = list.getEnumerator();
while(e.MoveNext()) {
// do something
}
Workaround:
while(e.MoveNext() && e.IsValid()){
...
}