mirror of
https://github.com/servo/servo.git
synced 2025-07-11 01:13:41 +01:00
13 lines
No EOL
143 B
Text
13 lines
No EOL
143 B
Text
// Extracted from WebIDL spec 2011-05-23
|
|
|
|
interface A {
|
|
// ...
|
|
};
|
|
interface B {
|
|
// ...
|
|
};
|
|
interface C {
|
|
void f(A? x);
|
|
void f(B? x);
|
|
|
|
}; |