http://llvm.org/bugs/show_bug.cgi?id=22404

__vic <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |---

--- Comment #2 from __vic <[email protected]> ---
What is "clang++-tot"? Is it bug in 3.5? In which version was it fixed?

What about code like this?

struct stat {
};
void stat() {}

struct file_stat : public ::stat
{
    file_stat(const struct ::stat &s) : ::stat(s) {}
};

int main()
{
    struct ::stat s;
    file_stat s2(s);
}

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to