tenfourfox/testing/web-platform/tests/WebIDL/valid/idl/nullableobjects.widl
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

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