[Bug c++/79624] New: comma separate auto variables deduce different types under dependent lookup

2017-02-19 Thread rhainin1 at binghamton dot edu
: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: rhainin1 at binghamton dot edu Target Milestone: --- The following should fail to compile (does under clang) since auto is supposed to deduce to one type. #include #include

[Bug c++/65799] New: Allows constexpr coversion from cv void * to other type

2015-04-17 Thread rhainin1 at binghamton dot edu
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: rhainin1 at binghamton dot edu Created attachment 35349 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=35349&action=edit minimal code to reproduce The following code should fails to

[Bug c++/68423] New: override/final doesn't cause error in templated class without base

2015-11-18 Thread rhainin1 at binghamton dot edu
ormal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: rhainin1 at binghamton dot edu Target Milestone: --- The following does not produce a compile time error, though it should because Cls doesn't ever have a base class. templa

[Bug c++/63786] New: crash on argument pack in switch case

2014-11-08 Thread rhainin1 at binghamton dot edu
++ Assignee: unassigned at gcc dot gnu.org Reporter: rhainin1 at binghamton dot edu Created attachment 33924 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=33924&action=edit minimal code to reproduce using "case Is:" where Is is an argument pack (invalid code) ca