Bug 462294 - Add "View Video" to context menu for <video> elements. r=gavin, ui...
[wine-gecko.git] / xpcom / tests / static-checker / o10.cpp
blob362a05580975b86245bd65341d69dda190a50f2d
1 typedef int PRUint32;
2 typedef int PRInt32;
4 typedef PRUint32 nsresult;
5 typedef short PRUnichar;
7 class nsAString {
8 public:
9 void Read() const;
10 void Mutate();
13 nsresult bar();
15 nsresult foo(nsAString &s) {
16 nsresult rv = bar();
17 s.Read();
18 if (rv == 0) {
19 s.Mutate();
21 return rv;