Module import incompatibility

Paul Backus snarwin at gmail.com
Tue Aug 31 13:03:54 UTC 2021


On Tuesday, 31 August 2021 at 12:57:33 UTC, frame wrote:
>
> No, it has one, eg:
>
> ```d
> module cairo.PdfSurface;
> ```
>
> but the filename is PdfSurface.d and class name also :\

You can use a selective import:

```d
import cairo.PdfSurface: PdfSurface;
```


More information about the Digitalmars-d-learn mailing list