public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
From: Andrea Monaco <andrea.monaco@autistici.org>
To: gcc@gcc.gnu.org
Subject: Buggy error message when dereferencing once a double pointer to struct
Date: Mon, 23 May 2022 18:43:55 +0200	[thread overview]
Message-ID: <87tu9g6vxw.fsf@autistici.org> (raw)


This snippet that I wrote


  struct
  str
  {
    int val;
  };  


  void
  main (int argc, char **argv)
  {
    struct str **p;
    int i;
  
    i = p->val;
  }


is obviously incorrect.  But gcc 8.3.0 says

  pointer.c: In function ‘main’:
  pointer.c:14:8: error: ‘*p’ is a pointer; did you mean to use ‘->’?
     i = p->val;
          ^~
          ->

which seems a buggy error message to me: I wrote "p", not "*p"; also the
compiler suggests replacing "->" with itself.



Andrea Monaco




             reply	other threads:[~2022-05-23 16:43 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-23 16:43 Andrea Monaco [this message]
2022-05-23 16:47 ` Marek Polacek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87tu9g6vxw.fsf@autistici.org \
    --to=andrea.monaco@autistici.org \
    --cc=gcc@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).