mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
13 lines
143 B
Plaintext
13 lines
143 B
Plaintext
// Extracted from WebIDL spec 2011-05-23
|
|
|
|
interface A {
|
|
// ...
|
|
};
|
|
interface B {
|
|
// ...
|
|
};
|
|
interface C {
|
|
void f(A? x);
|
|
void f(B? x);
|
|
|
|
}; |