[LLVMbugs] [Bug 22404] Base class init error
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Sun Feb 1 09:52:12 PST 2015
http://llvm.org/bugs/show_bug.cgi?id=22404
__vic <d.v.a at ngs.ru> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|FIXED |---
--- Comment #2 from __vic <d.v.a at ngs.ru> ---
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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20150201/6c1adc9f/attachment.html>
More information about the llvm-bugs
mailing list