servo/tests/wpt/web-platform-tests/WebIDL/valid/idl/nullableobjects.widl

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);
};