summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/PR5086-ambig-resolution-enum.cpp
blob: 720566a69b055c728aff289b7e92f3033280211e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++0x

class C {
public:
        enum E { e1=0 };
        const char * fun1(int , enum E) const;
        int fun1(unsigned, const char *) const;
};

void foo(const C& rc) {
        enum {BUFLEN = 128 };
        const char *p = rc.fun1(BUFLEN - 2, C::e1);
}