Sign in
chromium
/
external
/
github.com
/
web-platform-tests
/
wpt
/
refs/heads/taskgraph
/
.
/
WebIDL
/
valid
/
idl
/
nullableobjects.widl
blob: 83d1d40b2acfa3a36ed8b503df42050338cdabb6 [
file
] [
log
] [
blame
] [
edit
]
// Extracted from WebIDL spec 2011-05-23
interface
A
{
// ...
};
interface
B
{
// ...
};
interface
C
{
void
f
(
A
?
x
);
void
f
(
B
?
x
);
};