Lines Matching full:mutable
69 mutable int mi;
70 mutable int &mir; // expected-error {{'mutable' cannot be applied to references}}
71 mutable void mfn(); // expected-error {{'mutable' cannot be applied to functions}}
72 mutable const int mci; // expected-error {{'mutable' and 'const' cannot be mixed}}
92 mutable int j;
102 // Play with mutable a bit more, to make sure it doesn't crash anything.
103 mutable int gi; // expected-error {{'mutable' can only be applied to member variables}}
104 mutable void gfn(); // expected-error {{illegal storage class on function}}
107 mutable int ml; // expected-error {{'mutable' can only be applied to member variables}}
144 struct A { } mutable *member;