Odin icon indicating copy to clipboard operation
Odin copied to clipboard

Infinite loop in fmt.print

Open khvorov45 opened this issue 3 years ago • 1 comments

Context

Odin: dev-2022-03:50503cb4
OS: Windows 10 Professional (version: 21H1), build 19043.1586
CPU: Intel(R) Core(TM) i7-8700K CPU @ 3.70GHz
RAM: 16338 MiB

Bug

This code

package main

import "core:fmt"

CharMapRec :: struct {
	face: Face,
}

FaceRec :: struct {
	size: Size,
}

Face :: ^FaceRec

SizeRec :: struct {
	face: Face,
}

Size :: ^SizeRec

main :: proc() {
	size_rec: SizeRec
	fmt.println(size_rec)
}

Loops infinitely in type_info_base

khvorov45 avatar Mar 18 '22 10:03 khvorov45

Hello!

I am marking this issue as stale as it has not received any engagement from the community or maintainers 120 days. That does not imply that the issue has no merit! If you feel strongly about this issue

  • open a PR referencing and resolving the issue;
  • leave a comment on it and discuss ideas how you could contribute towards resolving it;
  • leave a comment and describe in detail why this issue is critical for your use case;
  • open a new issue with updated details and a plan on resolving the issue.

The motivation for this automation is to help prioritize issues in the backlog and not ignore, reject, or belittle anyone..

github-actions[bot] avatar Jul 24 '22 22:07 github-actions[bot]