public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/115424] New: 'auto' type inference not working when struct declared in rhs, even when the final type is not anonymous
@ 2024-06-11  0:30 malekwryyy at gmail dot com
  2024-06-11  4:11 ` [Bug c/115424] " pinskia at gcc dot gnu.org
  2024-06-11 15:21 ` jsm28 at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: malekwryyy at gmail dot com @ 2024-06-11  0:30 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115424

            Bug ID: 115424
           Summary: 'auto' type inference not working when struct declared
                    in rhs, even when the final type is not anonymous
           Product: gcc
           Version: 15.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: malekwryyy at gmail dot com
  Target Milestone: ---

for example this code:

```
int main()
{
    auto x = (struct { int i; }){1}.i;
}
```

Compiling the above with gcc 15.0 give the following error:

```
<source>: In function 'main':
<source>:6:15: error: 'struct <anonymous>' defined in underspecified object
initializer
    6 |     auto x = (struct { int i; }){1}.i;
      |               ^~~~~~
Compiler returned: 1
```

When I replace it with 'typeof' it compiles fine:


```
int main()
{
    typeof((struct { int i; }){1}.i) x = (struct { int i; }){1}.i;
}
```

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-06-11 15:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-11  0:30 [Bug c/115424] New: 'auto' type inference not working when struct declared in rhs, even when the final type is not anonymous malekwryyy at gmail dot com
2024-06-11  4:11 ` [Bug c/115424] " pinskia at gcc dot gnu.org
2024-06-11 15:21 ` jsm28 at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).