You've already forked libadalang
mirror of
https://github.com/AdaCore/libadalang.git
synced 2026-02-12 12:28:54 -08:00
Move most of "ada/*" to the root directory (this makes sense, as this repository has been dedicated to Libadalang for years), and rename "ada/language" to "ada". TN: T914-010
11 lines
193 B
Python
11 lines
193 B
Python
"""
|
|
Check that loading a project with missing directories does not emit warnings
|
|
about missing directories.
|
|
"""
|
|
|
|
import libadalang
|
|
|
|
|
|
libadalang.UnitProvider.for_project('p.gpr')
|
|
print('Done.')
|