public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "asif_bahrainwala at hotmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/99611] New: Code compilation issue using templates
Date: Tue, 16 Mar 2021 06:35:36 +0000	[thread overview]
Message-ID: <bug-99611-4@http.gcc.gnu.org/bugzilla/> (raw)

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

            Bug ID: 99611
           Summary: Code compilation issue using templates
           Product: gcc
           Version: 9.3.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: asif_bahrainwala at hotmail dot com
  Target Milestone: ---

Hi,
a minimalist re-pro is available at
https://stackoverflow.com/questions/66641646/c-code-compilation-usage-of-fstream-ostream

The below code compiles in Clang but not in GCC (and VS2015):

#include <iostream>
#include <fstream>
using namespace std;


struct A
{
    int z=0;

    template<typename T>
    void func(T &y)
    {
        //cout<<typeid(T).name()<<endl;
        y<<z<<endl;
    }
};


template<typename T,typename T1>
T& operator<<(T &y,T1 &y1)
{
    y1.func(y);
    return y;
}

int main()
{
    A a;
    a.z=10;
    fstream fs("a.txt",ios::out);

    fs<<a; //this doesnt compile ????  ( I do have a walk around, but curious)
    cout<<a; //this works
    return 0;
}

             reply	other threads:[~2021-03-16  6:35 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-16  6:35 asif_bahrainwala at hotmail dot com [this message]
2021-05-20 20:13 ` [Bug c++/99611] " ppalka at gcc dot gnu.org

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=bug-99611-4@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@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).