mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 21:55:31 +00:00
b4cc34446e
--HG-- extra : rebase_source : 3dc3327030dc2cdf45bdd9170c5e9d02908c0d0c
10 lines
98 B
C++
10 lines
98 B
C++
class A
|
|
{
|
|
int m();
|
|
};
|
|
|
|
class B : A
|
|
{
|
|
__attribute__((user("NS_override"))) virtual int m();
|
|
};
|