2015-03-05 Paolo Carlini <paolo.carlini@oracle.com>
Fix last commit. From-SVN: r221208
This commit is contained in:
parent
512141f41a
commit
9b864d18e8
@ -1,3 +1,7 @@
|
||||
2015-03-05 Paolo Carlini <paolo.carlini@oracle.com>
|
||||
|
||||
Fix last commit.
|
||||
|
||||
2015-03-05 Paolo Carlini <paolo.carlini@oracle.com>
|
||||
|
||||
PR c++/64665
|
||||
|
@ -4,20 +4,20 @@
|
||||
#include <string>
|
||||
#include <cassert>
|
||||
|
||||
bool Test1(const bool arg)
|
||||
bool Test1(bool)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
bool Test1(const std::string arg)
|
||||
bool Test1(std::string)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
bool Test2(const int arg)
|
||||
bool Test2(int)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
bool Test2(const std::initializer_list<int> arg)
|
||||
bool Test2(std::initializer_list<int>)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
@ -25,24 +25,23 @@ bool Test2(const std::initializer_list<int> arg)
|
||||
struct S
|
||||
{
|
||||
S(int _a) : a(_a) {}
|
||||
int getA() const { return a; }
|
||||
private:
|
||||
int a;
|
||||
};
|
||||
bool Test3(const int arg)
|
||||
bool Test3(int)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
bool Test3(const S arg)
|
||||
bool Test3(S)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
bool Test4(const bool arg)
|
||||
bool Test4(bool)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
bool Test4(const std::initializer_list<std::string> arg)
|
||||
bool Test4(std::initializer_list<std::string>)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user