Sign in
cobalt
/
cobalt
/
d2bc3b69d823bbaf46d1c4355b23486a85a6d791
/
.
/
third_party
/
web_platform_tests
/
WebIDL
/
valid
/
idl
/
nullableobjects.widl
blob: 83d1d40b2acfa3a36ed8b503df42050338cdabb6 [
file
]
// Extracted from WebIDL spec 2011-05-23
interface
A
{
// ...
};
interface
B
{
// ...
};
interface
C
{
void
f
(
A
?
x
);
void
f
(
B
?
x
);
};