summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/resources/webidl2/test/syntax/idl/nullableobjects.widl
blob: 83d1d40b2acfa3a36ed8b503df42050338cdabb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Extracted from WebIDL spec 2011-05-23

interface A {
  // ...
};
interface B {
  // ...
};
interface C {
  void f(A? x);
  void f(B? x);

};