summaryrefslogtreecommitdiff
path: root/tests/headers/bitfield-method-same-name.hpp
blob: d66f16c0ecc78341d2f2b4b41ba72adb927120ec (plain)
1
2
3
4
5
6
struct Foo {
    char type_ : 3;
    char type();
    void set_type_(char c);
    void set_type(char c);
};