Lines Matching full:mutable
88 mutable int mi;
89 mutable int &mir; // expected-error {{'mutable' cannot be applied to references}}
90 mutable void mfn(); // expected-error {{'mutable' cannot be applied to functions}}
91 mutable const int mci; // expected-error {{'mutable' and 'const' cannot be mixed}}
111 mutable int j;
121 // Play with mutable a bit more, to make sure it doesn't crash anything.
122 mutable int gi; // expected-error {{'mutable' can only be applied to member variables}}
123 mutable void gfn(); // expected-error {{illegal storage class on function}}
126 mutable int ml; // expected-error {{'mutable' can only be applied to member variables}}
163 struct A { } mutable *member;